Fix aggregator pom name
[mdsal.git] / pom.xml
diff --git a/pom.xml b/pom.xml
index 92089861169025fc3fba37ebabfca48e35b18127..5a6ae961087eb701ecc63b346eee529e93f4f064 100644 (file)
--- a/pom.xml
+++ b/pom.xml
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>odlparent-lite</artifactId>
-        <version>4.0.2</version>
+        <version>4.0.9</version>
         <relativePath/>
     </parent>
 
     <modelVersion>4.0.0</modelVersion>
     <groupId>org.opendaylight.mdsal</groupId>
-    <artifactId>mdsal-agreggator</artifactId>
-    <version>3.0.0-SNAPSHOT</version>
+    <artifactId>mdsal-aggregator</artifactId>
+    <version>3.0.5-SNAPSHOT</version>
     <packaging>pom</packaging>
     <name>md-sal</name> <!-- Used by Sonar to set project name -->
 
         <module>model-binding2</module>
         <module>entityownership</module>
         <module>singleton-service</module>
+        <module>trace</module>
     </modules>
 
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-deploy-plugin</artifactId>
-                <configuration>
-                    <skip>true</skip>
-                </configuration>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-install-plugin</artifactId>
-                <configuration>
-                    <skip>true</skip>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
-
     <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>sonar-jacoco-aggregate</id>
             <activation>