Fix aggregator pom name
[mdsal.git] / pom.xml
diff --git a/pom.xml b/pom.xml
index ac3f90a3d72f3d4f84bcc255dfb9c37580a095dd..5a6ae961087eb701ecc63b346eee529e93f4f064 100644 (file)
--- a/pom.xml
+++ b/pom.xml
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>odlparent-lite</artifactId>
-        <version>4.0.7</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.4-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>
 
-    <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>sonar-jacoco-aggregate</id>
             <activation>