I am about to use maven to automate my builds. Unfortunately, I am not able to get all the features I want, even after reading several tutorials :( I would be glad if somebody could explain a way I can achieve all my goals! I want to automate 3 specific build tasks with several actions for a project from within eclipse, using m2e:
- Build snapshot
- compile
- define current project version + date as version
- build jar file
- copy jar file into the local repository in the project path itself (ยง{project}/builds/)
- Debug snapshot
- build snapshot as mentioned above
- copy jar file to plugins folder of a local test server
- build another project the current project depends on, copy its jar file to the plugins folder aswell
- launch server / connect to eclipse debugger (I know how to do that, the previous steps are the important ones)
- Create release
- compile
- define current project version as version
- build jar file
- copy jar file into the local repository in the project path itself
- create javadoc
- copy source files and javadoc to an archive folder
- increase the project version (for example v6 -> v7)
As mentioned I don't need a perfect solution, just a way to realize this ;) (Annotation: Chaining multiple launch configurations is not a problem.)
Edit: Which sections of the pom.xml do I have to modify to realize these steps and how can I invoke them using an eclipse launch configuration?