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.
<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