java - Where does Super POM come from in the config -


when @ effective pom in eclipse, can see load of dependencies , label stating our corporate super pom must form part of every project.

i can't work out super pom comes play in config. have looked @ settings.xml in maven, , has lists remote repositories, , internal repositories - can't seem see link super pom anywhere.

it muliple module maven project built internal archetype, , parent module has parent artefact defined...but when browse parent artefact, still cant see how super pom comes play.

any advice appreciated.

regards

i

the super pom defined <parent> tag:

<parent>   <groupid>com.mycompany</groupid>   <artifactid>mvn</artifactid>   <version>1.0.0-snapshot</version> </parent> 

Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -