Merge "Cleanup root pom "name"."
authorTony Tkacik <ttkacik@cisco.com>
Mon, 23 Feb 2015 16:08:58 +0000 (16:08 +0000)
committerGerrit Code Review <gerrit@opendaylight.org>
Mon, 23 Feb 2015 16:08:58 +0000 (16:08 +0000)
1  2 
opendaylight/archetypes/opendaylight-startup/src/main/resources/archetype-resources/pom.xml

index 3221efd3628b833a1fd71622d4c1b942041c3e96,55bf56c24196775e79a599b14b040a5f5148ac11..783b5bf7f2197c3b4b8d321845fd6d7c5a9b5db3
@@@ -9,7 -9,7 +9,7 @@@ and is available at http://www.eclipse.
    <groupId>${groupId}</groupId>
    <artifactId>${artifactId}-aggregator</artifactId>
    <version>${version}</version>
-   <name>${project.artifactId}</name>
+   <name>${artifactId}</name>
    <packaging>pom</packaging>
    <modelVersion>4.0.0</modelVersion>
    <prerequisites>
      <module>${artifactId}-features</module>
      <module>${artifactId}-artifacts</module>
    </modules>
 +  <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
 +  <build>
 +    <plugins>
 +      <plugin>
 +        <groupId>org.apache.maven.plugins</groupId>
 +        <artifactId>maven-deploy-plugin</artifactId>
 +        <configuration>
 +          <skip>true</skip>
 +        </configuration>
 +      </plugin>
 +      <plugin>
 +        <groupId>org.apache.maven.plugins</groupId>
 +        <artifactId>maven-install-plugin</artifactId>
 +        <configuration>
 +          <skip>true</skip>
 +        </configuration>
 +      </plugin>
 +    </plugins>
 +  </build>
  </project>