Improve RoutedDOMRpcRoutingTableEntryTest
[mdsal.git] / pom.xml
diff --git a/pom.xml b/pom.xml
index 87167057a26a55c24b28270c3c93b8317b8f70b4..f8c34275651094d4b6a6d3c3173385e0058a92ce 100644 (file)
--- a/pom.xml
+++ b/pom.xml
 <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">
 
     <parent>
-      <groupId>org.opendaylight.odlparent</groupId>
-      <artifactId>odlparent-lite</artifactId>
-      <version>4.0.0-SNAPSHOT</version>
-      <relativePath/>
+        <groupId>org.opendaylight.odlparent</groupId>
+        <artifactId>odlparent-lite</artifactId>
+        <version>9.0.6</version>
+        <relativePath/>
     </parent>
 
     <modelVersion>4.0.0</modelVersion>
     <groupId>org.opendaylight.mdsal</groupId>
     <artifactId>mdsal-agreggator</artifactId>
-    <version>2.4.0-SNAPSHOT</version>
-    <name>md-sal</name> <!-- Used by Sonar to set project name -->
+    <version>8.0.6-SNAPSHOT</version>
     <packaging>pom</packaging>
-
-    <scm>
-        <connection>scm:git:ssh://git.opendaylight.org:29418/mdsal.git</connection>
-        <developerConnection>scm:git:ssh://git.opendaylight.org:29418/mdsal.git</developerConnection>
-        <url>https://wiki.opendaylight.org/view/MD-SAL:Main</url>
-        <tag>HEAD</tag>
-    </scm>
+    <name>md-sal</name> <!-- Used by Sonar to set project name -->
+    <description>
+        Model-Driven Service Abstraction Layer. Provides YANG-centric code generation tools and supporting
+        APIs to allow building applications which operate on and interchange YANG-modeled data.
+    </description>
 
     <modules>
+        <module>artifacts</module>
         <module>common</module>
+        <module>docs</module>
+        <module>features</module>
+        <module>karaf</module>
         <module>dom</module>
         <module>binding</module>
-        <module>binding2</module>
         <module>model</module>
-        <module>model-binding2</module>
         <module>entityownership</module>
         <module>singleton-service</module>
+        <module>trace</module>
+
+        <!-- Netty integrations -->
+        <module>netty</module>
+
+        <!-- Data store replicators -->
+        <module>replicate</module>
+
+        <!-- IETF YANG (Module) Library -->
+        <module>yanglib</module>
     </modules>
 
-    <build>
-        <pluginManagement>
-            <plugins>
-                <plugin>
-                    <groupId>org.apache.maven.plugins</groupId>
-                    <artifactId>maven-checkstyle-plugin</artifactId>
-                    <dependencies>
-                        <dependency>
-                            <groupId>org.opendaylight.yangtools</groupId>
-                            <artifactId>checkstyle-logging</artifactId>
-                            <version>2.1.0-SNAPSHOT</version>
-                        </dependency>
-                    </dependencies>
-                </plugin>
-            </plugins>
-        </pluginManagement>
-    </build>
+    <properties>
+        <maven.deploy.skip>true</maven.deploy.skip>
+        <maven.install.skip>true</maven.install.skip>
+    </properties>
+
+    <profiles>
+        <profile>
+            <id>sonar-jacoco-aggregate</id>
+            <activation>
+                <property>
+                    <name>odl.jacoco.aggregateFile</name>
+                </property>
+            </activation>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.jacoco</groupId>
+                        <artifactId>jacoco-maven-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <id>merge</id>
+                                <goals>
+                                    <goal>merge</goal>
+                                </goals>
+                                <phase>generate-resources</phase>
+                                <configuration>
+                                    <destFile>${odl.jacoco.aggregateFile}</destFile>
+                                    <fileSets>
+                                        <fileSet>
+                                            <directory>${project.basedir}</directory>
+                                            <includes>
+                                                <include>**/target/code-coverage/*.exec</include>
+                                            </includes>
+                                        </fileSet>
+                                    </fileSets>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
+
+    <scm>
+        <connection>scm:git:ssh://git.opendaylight.org:29418/mdsal.git</connection>
+        <developerConnection>scm:git:ssh://git.opendaylight.org:29418/mdsal.git</developerConnection>
+        <url>https://wiki.opendaylight.org/view/MD-SAL:Main</url>
+        <tag>HEAD</tag>
+    </scm>
 </project>