hi I have one base pom.xml that is inherited by another pom. The child pom declares the relative path of the parent pom and so maven in not required to pull this parent pom from the repository, when the child project is built. Child pom does not even define its own version and inherits it from parent pom, but this child is not a module of the parent, i.e. there is no aggregation relation.
What I want to achieve is that when I run "mvn deploy" for the child project, it should also deploy the parent pom appropriately. Without this base pom in repository other projects cannot use or depend on this child project. Only option known to me now is to cd to the directory of base pom and run mvn deploy again. Is there some pom file setting or command line option to achieve this? thanks kapil -- View this message in context: http://www.nabble.com/how-to-auto-deploy-parent-pom-along-with-the-inherited-pom-tf4137139s177.html#a11766952 Sent from the Maven - Users mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
