Specifying parent pom in a way that complies with m3
authorJaroslav Tulach <jtulach@netbeans.org>
Thu, 07 Jun 2012 20:34:55 +0200
changeset 979ca97def88911
parent 978 58de2f876445
child 980 fdd7f8e3c9e4
Specifying parent pom in a way that complies with m3
anagramdemo/anagrambase/pom.xml
anagramdemo/simplescrambler/pom.xml
anagramdemo/staticwordlibrary/pom.xml
     1.1 --- a/anagramdemo/anagrambase/pom.xml	Thu Jun 07 19:59:15 2012 +0200
     1.2 +++ b/anagramdemo/anagrambase/pom.xml	Thu Jun 07 20:34:55 2012 +0200
     1.3 @@ -5,6 +5,12 @@
     1.4    <packaging>jar</packaging>
     1.5    <version>1.0</version>
     1.6    <url>http://maven.apache.org</url>
     1.7 +  <parent>
     1.8 +    <artifactId>anagramdemo</artifactId>
     1.9 +    <groupId>org.apidesign</groupId>
    1.10 +    <version>2.0</version>
    1.11 +    <relativePath>..</relativePath>
    1.12 +  </parent>
    1.13    <repositories>
    1.14        <repository>
    1.15            <id>netbeans</id>
     2.1 --- a/anagramdemo/simplescrambler/pom.xml	Thu Jun 07 19:59:15 2012 +0200
     2.2 +++ b/anagramdemo/simplescrambler/pom.xml	Thu Jun 07 20:34:55 2012 +0200
     2.3 @@ -6,6 +6,7 @@
     2.4      <artifactId>anagramdemo</artifactId>
     2.5      <groupId>org.apidesign</groupId>
     2.6      <version>2.0</version>
     2.7 +    <relativePath>..</relativePath>
     2.8    </parent>
     2.9    <groupId>org.apidesign</groupId>
    2.10    <artifactId>simplescrambler</artifactId>
     3.1 --- a/anagramdemo/staticwordlibrary/pom.xml	Thu Jun 07 19:59:15 2012 +0200
     3.2 +++ b/anagramdemo/staticwordlibrary/pom.xml	Thu Jun 07 20:34:55 2012 +0200
     3.3 @@ -3,9 +3,10 @@
     3.4      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     3.5    <modelVersion>4.0.0</modelVersion>
     3.6    <parent>
     3.7 -    <artifactId>all-lookup</artifactId>
     3.8 +    <artifactId>anagramdemo</artifactId>
     3.9      <groupId>org.apidesign</groupId>
    3.10      <version>2.0</version>
    3.11 +    <relativePath>..</relativePath>
    3.12    </parent>
    3.13    <groupId>org.apidesign</groupId>
    3.14    <artifactId>staticwordlibrary</artifactId>