Bumping versions by x.y.(z+1) for next dev cycle
[mdsal.git] / model / pom.xml
index 7af9b433b029bbe704c366dce6af48e803c54f78..70f61ef69d0fe5b2c54f15ecf1e9bea7c242f0a0 100644 (file)
     <parent>
         <groupId>org.opendaylight.mdsal</groupId>
         <artifactId>binding-parent</artifactId>
-        <version>0.8.0-SNAPSHOT</version>
+        <version>0.9.4-SNAPSHOT</version>
         <relativePath>../binding/binding-parent</relativePath>
     </parent>
     <groupId>org.opendaylight.mdsal.model</groupId>
-    <!--<version>0.8.0-SNAPSHOT</version>-->
+    <!--<version>0.9.4-SNAPSHOT</version>-->
     <modelVersion>4.0.0</modelVersion>
     <artifactId>model-parent</artifactId>
     <packaging>pom</packaging>
     <name>${project.artifactId}</name>
     <description>${project.artifactId}</description>
 
+    <properties>
+       <mdsal.model.version>0.9.4-SNAPSHOT</mdsal.model.version>
+    </properties>
+
     <modules>
         <module>features</module>
         <module>artifacts</module>
         <module>iana</module>
         <module>ietf</module>
         <module>l2-types</module>
+        <module>general-entity</module>
     </modules>
 
+    <dependencyManagement>
+      <dependencies>
+          <dependency>
+            <groupId>org.opendaylight.mdsal.model</groupId>
+            <artifactId>mdsal-model-artifacts</artifactId>
+            <version>${mdsal.model.version}</version>
+            <type>pom</type>
+            <scope>import</scope>
+          </dependency>
+      </dependencies>
+    </dependencyManagement>
+
     <dependencies>
         <dependency>
-            <groupId>org.opendaylight.yangtools</groupId>
+            <groupId>org.opendaylight.mdsal</groupId>
             <artifactId>yang-binding</artifactId>
         </dependency>
         <dependency>
             <artifactId>yang-common</artifactId>
         </dependency>
     </dependencies>
+
+  <!--
+      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>