On Fri, 05 Jun 2009 14:12:50 -0500, dkowis <[email protected]> wrote: > Say I've got a super pom with a defined SCM section like so: > <scm> > <connection>scm:git:git://server/repos/${artifactId}.git</connection> > </scm> > > Well in the child pom, it's taking the super pom's name and appending / > child pom's name. > Like so: > <scm> > <connection>scm:git:git://server/repos/Super/Child.git</connection> > </scm> > > That's not what I wanted it to do, I need it to just have Child.git without > the super/ stuff > How do I ensure that happens? >
Actually it's still stranger than that: I have a configured url in the scm section <url>http://server/gitweb/gitweb.cgi/repos/${artifactId}</url> This should show up in the generated site (when running mvn site) as: http://server/gitweb/gitweb.cgi/repos/Child But it's showing up as: http://server/gitweb/gitweb.cgi/repos/Child/Super/Child What is going on? I didn't specify anything else after the URL, why is appending things for me? Thanks, David --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
