Bump versions by x.y.(z+1)
[neutron.git] / parent / pom.xml
index 7ec9941460d0c1f4055b15c0d87e4ac9cbf812e7..3f3f319964ef6f729348cd655117ec3d369e4bdf 100644 (file)
@@ -2,29 +2,29 @@
 <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>
   <prerequisites>
-    <maven>3.0</maven>
+    <maven>3.1.1</maven>
   </prerequisites>
 
   <parent>
     <groupId>org.opendaylight.odlparent</groupId>
     <artifactId>odlparent</artifactId>
-    <version>1.6.0-SNAPSHOT</version>
+    <version>1.7.5-SNAPSHOT</version>
     <relativePath/>
   </parent>
 
   <groupId>org.opendaylight.neutron</groupId>
   <artifactId>project-neutron-parent</artifactId>
-  <version>0.6.0-SNAPSHOT</version>
+  <version>0.7.5-SNAPSHOT</version>
   <packaging>pom</packaging>
 
   <properties>
-    <aaa.version>0.2.0-SNAPSHOT</aaa.version>
-    <ietf-yang-types.version>2010.09.24.8-SNAPSHOT</ietf-yang-types.version>
-    <ietf-inet-types.version>2010.09.24.8-SNAPSHOT</ietf-inet-types.version>
+    <aaa.version>0.3.5-SNAPSHOT</aaa.version>
+    <ietf-yang-types.version>2013.07.15.9.5-SNAPSHOT</ietf-yang-types.version>
+    <ietf-inet-types.version>1.1.5-SNAPSHOT</ietf-inet-types.version>
     <salGeneratorPath>src/main/yang-gen-sal</salGeneratorPath>
-    <yang.binding.version>0.8.0-SNAPSHOT</yang.binding.version>
-    <yangtools.version>0.8.0-SNAPSHOT</yangtools.version>
-    <yang-ext.version>2013.09.07.8-SNAPSHOT</yang-ext.version>
+    <mdsal.model.version>0.9.5-SNAPSHOT</mdsal.model.version>
+    <yangtools.version>1.0.5-SNAPSHOT</yangtools.version>
+    <yang-ext.version>2013.09.07.9.5-SNAPSHOT</yang-ext.version>
     <sonar.jacoco.reportPath>target/jacoco.exec</sonar.jacoco.reportPath>
     <sonar.jacoco.itReportPath>../target/jacoco-it.exec</sonar.jacoco.itReportPath>
     <checkstyle.location>${project.build.resources[0].directory}</checkstyle.location>
       <dependency>
         <groupId>org.opendaylight.mdsal</groupId>
         <artifactId>yang-binding</artifactId>
-        <version>${yang.binding.version}</version>
+        <version>${mdsal.model.version}</version>
       </dependency>
       <dependency>
         <groupId>org.opendaylight.yangtools</groupId>
         <artifactId>yang-common</artifactId>
-        <version>${yang.binding.version}</version>
+        <version>${yangtools.version}</version>
       </dependency>
       <dependency>
         <groupId>org.opendaylight.mdsal.model</groupId>
-        <artifactId>ietf-inet-types</artifactId>
+        <artifactId>ietf-inet-types-2013-07-15</artifactId>
         <version>${ietf-inet-types.version}</version>
       </dependency>
       <dependency>
         <groupId>org.opendaylight.mdsal.model</groupId>
-        <artifactId>ietf-yang-types</artifactId>
+        <artifactId>ietf-yang-types-20130715</artifactId>
         <version>${ietf-yang-types.version}</version>
       </dependency>
       <dependency>
@@ -71,7 +71,6 @@
         <plugin>
           <artifactId>maven-checkstyle-plugin</artifactId>
           <configuration>
-            <configLocation>${checkstyle.location}/java_rules.xml</configLocation>
             <excludes>org/opendaylight/yang/gen/**,**/yang/**</excludes>
             <consoleOutput>true</consoleOutput>
           </configuration>
         <artifactId>maven-compiler-plugin</artifactId>
         <inherited>true</inherited>
         <configuration>
-          <source>1.7</source>
-          <target>1.7</target>
+          <compilerArgs>
+            <arg>-Xlint:unchecked</arg>
+            <arg>-Xlint:deprecation</arg>
+          </compilerArgs>
         </configuration>
       </plugin>
       <plugin>
       </plugin>
     </plugins>
   </build>
+
+  <!--
+      Maven Site Configuration
+
+      The following configuration is necessary for maven-site-plugin to
+      correctly identify the correct deployment path for OpenDaylight Maven
+      sites.
+  -->
+  <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
+
+  <distributionManagement>
+    <site>
+      <id>opendaylight-site</id>
+      <url>${nexus.site.url}/${project.artifactId}/</url>
+    </site>
+  </distributionManagement>
 </project>