News
This is a Maven2 plugin to make simple development and deployment of webapplications within Eclipse IDE.
The starting point
To debug web applications within Eclipse IDE usually you need to copy "by hand" resources like dependency libraries, jsp pages and other resource types into webapplication folders.
This plugin
Allow you manage task to manage resources of web application folder (WEB-INF/lib) with 3 simple Maven commands
Requirements
Declaration
Simply add xtools-maven-plugin to your plugins list of Maven2 Project Object Model in this way:
<plugin> <groupId>it.activemind</groupId> <artifactId>xtools-maven-plugin</artifactId> <configuration> <webappDir> ${project.basedir}/src/webapp/ </webappDir> <deployablesDir> ${project.basedir}/your-deployables-path-here/ </deployablesDir> </configuration> </plugin>