Tagged Questions
4
votes
2answers
1k views
Maven String Replace of Text Web Resources
I have a Maven web application with text files in
src/main/webapp/textfilesdir
As I understand it, during the package phase this textfilesdir directory will be copied into the
...
2
votes
2answers
1k views
How can I execute several maven plugins within a single phase and set their respective execution order?
I would like to breakup certain phases in the maven life cycle into sub phases. I would like to control the execution flow from one sub-phase to another, sort of like with ant dependencies.
For ...
2
votes
1answer
535 views
How to perform ordered tasks in Maven2 build
I am trying to migrate a Java application built by Ant to Maven2. among other the build perform the following operations:
1) Running a javadoc doclet to find annotated Java files to be externalize ...
1
vote
2answers
2k views
How to skip install phase in Maven build if I already have this version installed in repo
I have a project that consist of 3 different libraries. When I run install script it takes all libraries from repo and run mvn clean install on them. But this version of library already installed in ...
1
vote
2answers
1k views
Maven - add custom phase to execute plugin with other configuration
I have two set of integration tests in one maven project - automatic and manual tests. The manual tests are few but tedious - they require pulling the plug of servers etc. I would like to create a ...