I want to build an application distribution with Maven. I have a module in my project which holds the main source code. I decided to build the application distribution from this module. I'm telling maven in the module's POM to copy all the configuration files and dependant libs to the target/ directory. My problem is that Maven keeps all the build related temporary dirs (like. classes, generated-sources, maven-archiver) in the target directory. I wan't to auto delete these at least during the install phase. How can i achive this? If i put the maven-clean-plugin to the end of the build it looks like Maven always deletes the whole target directory, no matter who i'm trying to exclude files what i'm trying to keep.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
| show 1 more comment |
|
try this in your pom
and here is the xml
|
|||
|
|
How are you doing this? Based on the question, it looks like you need to worry less about selectively deleting contents of target folder (which can be done by customizing maven clean plugin), but creating a distribution using maven assembly plugin (as pointed out by @Scorpion). The latter allows you to bundle together all your project artifacts including the dependencies into zip or other formats, which can then be easily used by developers. You may want to decouple this from regular build by using a separate |
|||
|

mvn clean installto ensure you are making a clean build each time. – Peter Lawrey Sep 23 '11 at 8:08installis to put the build in your repository and the whole point of thedeploycommand is to deploy the build to a shared area like a nexus server. This is what they should be using. Even maven doesn't look in thetargetarea of other modules (it uses one of the two ways I have mentioned) BTW You canpackagebut not install if you don't want to touch the repository. – Peter Lawrey Sep 23 '11 at 9:31