Add MinMaxElementsValidationFailedException
[yangtools.git] / pom.xml
diff --git a/pom.xml b/pom.xml
index d241494f51631238e00af4bf415c4326d99ceb6e..8f59214e2b182ffabbb159b9fc91210d137e2350 100644 (file)
--- a/pom.xml
+++ b/pom.xml
     <parent>
       <groupId>org.opendaylight.odlparent</groupId>
       <artifactId>odlparent-lite</artifactId>
-      <version>4.0.5-SNAPSHOT</version>
+      <version>8.0.1</version>
       <relativePath/>
     </parent>
 
     <modelVersion>4.0.0</modelVersion>
     <groupId>org.opendaylight.yangtools</groupId>
     <artifactId>yangtools-aggregator</artifactId>
-    <version>2.1.6-SNAPSHOT</version>
-    <name>yangtools</name> <!-- Used by Sonar to set project name -->
+    <version>6.0.2-SNAPSHOT</version>
     <packaging>pom</packaging>
+    <name>yangtools</name> <!-- Used by Sonar to set project name -->
+    <description>
+        YANG Tools provides basic libraries for parsing YANG and YIN files, working with the resulting effective model,
+        and handling data complying to this model.
+    </description>
 
     <scm>
         <connection>scm:git:ssh://git.opendaylight.org:29418/yangtools.git</connection>
 
     <modules>
         <module>artifacts</module>
+        <module>docs</module>
+        <module>features</module>
+
+        <module>attic</module>
         <module>benchmarks</module>
         <module>bundle-parent</module>
         <module>common</module>
-        <module>features</module>
+        <module>plugin</module>
+        <module>tools</module>
+
         <module>yang</module>
-        <module>yang-validation-tool</module>
-        <module>third-party</module>
     </modules>
 
+    <properties>
+        <maven.deploy.skip>true</maven.deploy.skip>
+        <maven.install.skip>true</maven.install.skip>
+    </properties>
+
     <profiles>
+        <profile>
+            <id>karaf</id>
+            <activation>
+                <activeByDefault>true</activeByDefault>
+            </activation>
+
+            <modules>
+                <module>karaf</module>
+            </modules>
+        </profile>
         <profile>
             <id>sonar-jacoco-aggregate</id>
             <activation>
                 </plugins>
             </build>
         </profile>
-
-        <profile>
-            <!--
-                This profile is to ensure we only build javadocs reports
-                when we plan to deploy Maven site for our project.
-            -->
-            <id>maven-site</id>
-            <activation>
-                <file>
-                    <exists>${user.dir}/deploy-site.xml</exists>
-                </file>
-            </activation>
-
-            <build>
-                <plugins>
-                    <plugin>
-                        <groupId>org.apache.maven.plugins</groupId>
-                        <artifactId>maven-javadoc-plugin</artifactId>
-                        <inherited>false</inherited>
-                        <executions>
-                            <execution>
-                                <id>aggregate</id>
-                                <goals>
-                                    <goal>aggregate</goal>
-                                </goals>
-                                <phase>package</phase>
-                                <configuration>
-                                    <!-- Xerces-J has non-compliant javadocs -->
-                                    <additionalparam>-Xdoclint:none</additionalparam>
-                                </configuration>
-                            </execution>
-                        </executions>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
     </profiles>
-
 </project>