Bump versions by x.y.(z+1)
[yangtools.git] / yang / pom.xml
index 2e12378abbe72c837203188ccc92c6859202a9d2..596712d971433477c704d9af7bfc42a0b387b8ac 100644 (file)
@@ -9,35 +9,54 @@
 -->
 <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">
 
-    <groupId>org.opendaylight.yangtools</groupId>
-    <version>0.6.2-SNAPSHOT</version>
+    <parent>
+        <groupId>org.opendaylight.odlparent</groupId>
+        <artifactId>odlparent-lite</artifactId>
+        <version>1.8.5-SNAPSHOT</version>
+        <relativePath/>
+    </parent>
+
     <modelVersion>4.0.0</modelVersion>
+    <groupId>org.opendaylight.yangtools</groupId>
     <artifactId>yang-aggregator</artifactId>
+    <version>1.1.5-SNAPSHOT</version>
     <packaging>pom</packaging>
 
     <modules>
-        <module>yang-binding</module>
         <module>yang-common</module>
         <module>yang-data-api</module>
         <module>yang-data-util</module>
         <module>yang-data-impl</module>
-        <module>yang-data-operations</module>
+        <module>yang-data-transform</module>
         <module>yang-data-codec-gson</module>
-        <module>yang-model-api</module>
+        <module>yang-data-codec-xml</module>
         <module>yang-maven-plugin</module>
         <module>yang-maven-plugin-it</module>
         <module>yang-maven-plugin-spi</module>
+        <module>yang-model-api</module>
+        <module>yang-model-export</module>
+        <module>yang-model-immutable</module>
         <module>yang-model-util</module>
         <module>yang-parser-api</module>
         <module>yang-parser-impl</module>
-        <module>yang-data-composite-node</module>
+        <module>yang-data-jaxen</module>
+        <module>yang-system-test</module>
+        <module>yang-test-util</module>
     </modules>
-    <build>
-        <plugins>
-           <plugin>
-             <groupId>org.apache.maven.plugins</groupId>
-             <artifactId>maven-checkstyle-plugin</artifactId>
-           </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>