Use imported checkState()
[yangtools.git] / pom.xml
diff --git a/pom.xml b/pom.xml
index efe9a276f24f96b0a4466493ac5db84f96d0f09d..91edf7434fe605f5e42f16be17649fa6c375d4a0 100644 (file)
--- a/pom.xml
+++ b/pom.xml
     <parent>
       <groupId>org.opendaylight.odlparent</groupId>
       <artifactId>odlparent-lite</artifactId>
-      <version>4.0.9</version>
+      <version>11.0.0-SNAPSHOT</version>
       <relativePath/>
     </parent>
 
     <modelVersion>4.0.0</modelVersion>
     <groupId>org.opendaylight.yangtools</groupId>
     <artifactId>yangtools-aggregator</artifactId>
-    <version>2.1.9-SNAPSHOT</version>
-    <name>yangtools</name> <!-- Used by Sonar to set project name -->
+    <version>9.0.0-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>benchmarks</module>
+        <module>bnd-parent</module>
         <module>bundle-parent</module>
+        <module>codec</module>
         <module>common</module>
-        <module>features</module>
+        <module>data</module>
+        <module>model</module>
+        <module>parser</module>
+        <module>plugin</module>
+        <module>tools</module>
+        <module>xpath</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>aggregate-javadoc</id>
-            <activation>
-                <activeByDefault>true</activeByDefault>
-            </activation>
-            <build>
-                <plugins>
-                    <plugin>
-                        <artifactId>maven-javadoc-plugin</artifactId>
-                        <executions>
-                            <execution>
-                                <id>aggregate</id>
-                                <phase>package</phase>
-                                <goals>
-                                    <goal>aggregate-jar</goal>
-                                </goals>
-                            </execution>
-                        </executions>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
         <profile>
             <id>karaf</id>
             <activation>
@@ -71,7 +67,7 @@
             </activation>
 
             <modules>
-                <module>distribution-karaf</module>
+                <module>karaf</module>
             </modules>
         </profile>
         <profile>
                 </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>