Merge "Add missing <name> fields for pom.xml files"
authorIsaku Yamahata <isaku.yamahata@gmail.com>
Sat, 4 Mar 2017 00:10:59 +0000 (00:10 +0000)
committerGerrit Code Review <gerrit@opendaylight.org>
Sat, 4 Mar 2017 00:10:59 +0000 (00:10 +0000)
1  2 
features/production/pom.xml
neutron-hostconfig/pom.xml

index 5f15b31c774b7820b365c760d2dfa1e81e01636f,623cba98c20f90b6c419108afd97507cc91091eb..0252c3b0ef61306e411f09d21bdabed23a48e0e0
@@@ -11,6 -11,9 +11,9 @@@
    <artifactId>features-neutron</artifactId>
    <version>0.8.0-SNAPSHOT</version>
    <packaging>jar</packaging>
+   <!-- <name> formatting is used by autorelease to parse and notify projects on
+        build failure. Please do not modify this unless you have a good reason. -->
+   <name>ODL :: neutron :: ${project.artifactId}</name>
    <properties>
        <aaa.version>0.5.0-SNAPSHOT</aaa.version>
        <yangtools.version>1.1.0-SNAPSHOT</yangtools.version>
@@@ -18,7 -21,6 +21,7 @@@
        <mdsal.model.version>0.10.0-SNAPSHOT</mdsal.model.version>
        <restconf.version>1.5.0-SNAPSHOT</restconf.version>
        <ovsdb.version>1.4.0-SNAPSHOT</ovsdb.version>
 +      <netconf.version>1.2.0-SNAPSHOT</netconf.version>
    </properties>
    <dependencyManagement>
      <dependencies>
@@@ -39,8 -41,8 +42,8 @@@
        </dependency>
        <dependency>
          <groupId>org.opendaylight.netconf</groupId>
 -        <artifactId>restconf-artifacts</artifactId>
 -        <version>${restconf.version}</version>
 +        <artifactId>netconf-artifacts</artifactId>
 +        <version>${netconf.version}</version>
          <type>pom</type>
          <scope>import</scope>
        </dependency>
        <type>xml</type>
        <classifier>features</classifier>
      </dependency>
 -    <dependency>
 -      <groupId>org.opendaylight.netconf</groupId>
 -      <artifactId>features-restconf</artifactId>
 -      <version>${restconf.version}</version>
 -      <type>xml</type>
 -      <classifier>features</classifier>
 -    </dependency>
      <dependency>
        <groupId>org.opendaylight.aaa</groupId>
        <artifactId>features-aaa-shiro</artifactId>
        <artifactId>utils.mdsal-utils</artifactId>
        <version>${ovsdb.version}</version>
      </dependency>
 +    <dependency>
 +      <groupId>org.opendaylight.netconf</groupId>
 +      <artifactId>features-netconf-connector</artifactId>
 +      <classifier>features</classifier>
 +      <type>xml</type>
 +      <scope>runtime</scope>
 +    </dependency>
      <dependency>
        <groupId>${project.groupId}</groupId>
        <artifactId>neutron-hostconfig-utils</artifactId>
        <artifactId>neutron-hostconfig-ovs</artifactId>
        <version>${project.version}</version>
      </dependency>
 +    <dependency>
 +      <groupId>${project.groupId}</groupId>
 +      <artifactId>neutron-hostconfig-vpp</artifactId>
 +      <version>${project.version}</version>
 +    </dependency>
    </dependencies>
    <scm>
      <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
index 8c381720a8eafd46a3926b19a487a38e845bd8f0,9662711c6a9253235ce5ce23400598328c919c80..4765a80ff731a4de2123d037249c200268a9a8d9
    <artifactId>neutron-hostconfig</artifactId>
    <version>0.8.0-SNAPSHOT</version>
    <packaging>pom</packaging>
+   <!-- <name> formatting is used by autorelease to parse and notify projects on
+        build failure. Please do not modify this unless you have a good reason. -->
+   <name>ODL :: neutron :: ${project.artifactId}</name>
    <modules>
      <module>utils</module>
      <module>ovs</module>
 +    <module>vpp</module>
    </modules>
    <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
    <build>
@@@ -54,4 -56,3 +57,3 @@@
      </site>
    </distributionManagement>
  </project>