How do I run selected modules using parent pom in Maven like I have

<module>APP_1</module>
<module>web_1</module>
<module>service_1</module>
<module>schema_1</module>

<module>APP_2</module>
<module>web_2</module>
<module>service_2</module>
<<module>schema_2</module>

sometimes as developer if I want to build first module only so how should I achieve this task in parent pom?

link|improve this question

40% accept rate
feedback

2 Answers

up vote 1 down vote accepted
mvn reactor:make -Dmake.folders=barBusinessLogic

as described here

link|improve this answer
Thanks a lot this should work.. – user1137387 Feb 9 at 0:03
No problem. Please mark answer as accepted if you're satisfied. – maximdim Feb 9 at 1:53
feedback

First you have to make a decision.

Assuming that some of your child modules depend on other child modules you have to decide if you want to:

a) build one or more modules by themselves using the last built version of the dependent modules located in your ~/.m2/repository directory. This is super useful if you want to, say, rebuild the web_2 module which depends on the service_2 module, but service_2 is currently busted and won't compile. In this case do this:

mvn clean install --projects module-directory-name

or

b) you want to build a module and have maven recursively check all dependent modules to see if they need to be rebuilt. This is slower and safer typically. This command is:

mvn reactor:make -Dmake.artifacts=com.yourgroup:module-name

I use both of these at different times every day.

link|improve this answer
thanks for your wonderful descriptive answer i appreciate.. – user1137387 Feb 9 at 6:37
Happy to help...do please click the green checkmark by the answer if you are happy with it. Also feel free to upvote any/all answers you find helpful. – HDave Feb 9 at 14:00
It is working fine with maven 2.2.1 version but not working with 3.0.3 version any suggestions – user1137387 Mar 19 at 22:49
Post a new question with the command you are running and the error you are seeing and then leave a comment back here when you do. There can be many reasons why something won't work in 3.0.3 -- all easily fixed. – HDave Mar 20 at 0:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.