Fix version tag placement 09/17509/1
authorDan Timoney <dtimoney@att.com>
Fri, 6 Oct 2017 19:06:32 +0000 (15:06 -0400)
committerDan Timoney <dtimoney@att.com>
Fri, 6 Oct 2017 19:14:16 +0000 (15:14 -0400)
oparent-odlparent Jenkins job updates the first <version> tag in
the pom.xml, so the <parent> tag must appear after the <version>
for the pom.xml itself.

Change-Id: I3369c804a2470936c51801b5fbdd53b0052ee83c
Issue-ID: INT-257
Signed-off-by: Dan Timoney <dtimoney@att.com>
oparent-odlparent/pom.xml

index a05e7bf..5ba340e 100644 (file)
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
-  <parent>
-        <groupId>org.opendaylight.odlparent</groupId>
-        <artifactId>odlparent</artifactId>
-        <version>1.8.1-Carbon</version>
-  </parent>
   <groupId>org.onap.oparent</groupId>
   <artifactId>oparent-odlparent</artifactId>
   <version>1.0.0-SNAPSHOT</version>
   <name>oparent/odlparent-carbon</name>
   <packaging>pom</packaging>
+  <parent>
+        <groupId>org.opendaylight.odlparent</groupId>
+        <artifactId>odlparent</artifactId>
+        <version>1.8.1-Carbon</version>
+  </parent>
   <properties>
     <!--- properties from oparent/version -->
     <maven.compiler.source>1.8</maven.compiler.source>