On 1/13/06, Sean McNamara <[EMAIL PROTECTED]> wrote: > When specifying the parent in the child pom, I need to > specify the version. Maven then tries to look up the > parent pom in the repository. > > What do I need to do to get the parent pom installed? > Do I treat it like a third-party jar?
Just 'mvn install' should do it. If the parent pom is not in the directory right above the child pom, (which is where Maven looks for it by default,) then you can use (for example) <relativePath>../build/pom.xml</relativePath> in the <parent> section. -- Wendy --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
