Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Situation with inheritance in maven. I want create hierarchy of projects. Something like main POM <- module1 <- module2.

I trying in my main POM to define module1 with <module> module1</module>. In module2 i define parent POM with <parent> tag. But after comand "mvn clean package" in main project folder, there is no jar created in the module2 directory.

can someone explain me what i have to do. Thanks.

share|improve this question
The error you are getting would help – Jan Zyka Mar 3 '11 at 15:56
module1 must have POM packaging. – Oleksandr Mar 3 '11 at 15:59
<parent> is not the inverse of <module>, by the way. It is not necessary for a module's <parent> to be the directory above. – Matthew Gilliard Mar 3 '11 at 16:01
can you post pom along with dir structure – Jigar Joshi Mar 3 '11 at 16:02

2 Answers

up vote 0 down vote accepted

You can install the child project into your local repository and include it in the list of dependencies in your parent project. If you're not making changes often to the child project then I've found the install+refresh is quicker overall than having your IDE constantly scanning multiple projects to resolve dependencies.

share|improve this answer
-1 Reason: this can lead to instable builds on a continuous integration server. If you want to do something similar, then versionized the child project properly (not a SNAPSHOT version) and deploy it to a repository manager such as Nexus. Then you can declare a dependency to that artifact. – Puce Mar 3 '11 at 16:48

module1 must have POM packaging

And there you have your answer. Only modules with POM packaging can contain other modules.

share|improve this answer
So we can't create hierarhy with out POM packaging in intermediate POM ? – Oleksandr Mar 3 '11 at 16:09
That's correct AFAIK. It's not a big limitation though, I guess. – Puce Mar 3 '11 at 16:44

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.