Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have following module structure.

  Project 
     -- datamodel
     -- server
          |---- ear
           ---- api       

If I modify something in datamodel.I would like to only execute pom for datamodel.However 'ear' module is doing the final packaging.So, I end up executing datamodel and ear. I tried following command, but did not work.

 mvn install -pl datamodel,server:ear.

How to refer to the child module of a child module? I assume that whatever we are specifying after "-pl" are the artifactIds of the module that we want to execute.

share|improve this question
Have you tried server/ear ? – khmarbaise Aug 4 '11 at 13:44

1 Answer

up vote 0 down vote accepted

Refer to the groupId:artifactId not the folder name.

share|improve this answer
I am referring to artifactIds.Still its not working. – MandarBK Aug 4 '11 at 14:09
I doubt that but you should try -X. – Michael-O Aug 4 '11 at 14:11
<artifactId>server</artifactId> and <artifactId>ear</artifactId>... – MandarBK Aug 4 '11 at 14:19
Using a complete name(groupId:artifactId) works well.If the groupId is mycompany, following command works..... mvn install -pl datamodel,mycompany:ear. Not sure why datamodel worked without the 'groupId' prefix. – MandarBK Aug 4 '11 at 14:30
did you change the groupId somewhere in the tree? – Michael-O Aug 4 '11 at 15:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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