Remove obsolete Maven Site configuration
[bgpcep.git] / pom.xml
diff --git a/pom.xml b/pom.xml
index e09161efce2e1472ca28a5731227d4bbc12c204b..5472c31268166a41af473891d1b2eac6c46f0613 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -8,9 +8,7 @@
  and is available at http://www.eclipse.org/legal/epl-v10.html
 -->
 
-<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">
+<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">
 
     <modelVersion>4.0.0</modelVersion>
     <scm>
         <tag>HEAD</tag>
     </scm>
     <parent>
-        <groupId>org.opendaylight.bgpcep</groupId>
-        <artifactId>commons.parent</artifactId>
-        <version>0.3.0-SNAPSHOT</version>
-        <relativePath>commons/parent</relativePath>
+        <groupId>org.opendaylight.odlparent</groupId>
+        <artifactId>odlparent-lite</artifactId>
+        <version>3.0.2</version>
+        <relativePath/>
     </parent>
 
-    <artifactId>releasepom</artifactId>
+    <groupId>org.opendaylight.bgpcep</groupId>
+    <artifactId>bgpcep-aggregator</artifactId>
+    <version>0.10.0-SNAPSHOT</version>
     <packaging>pom</packaging>
-    <name>BGPCEP release</name>
-    <description>BGPCEP top-level pom</description>
+    <name>bgpcep</name> <!-- Used by Sonar to set project name -->
+    <description>BGPCEP top-level aggregator</description>
 
     <modules>
+        <!-- Well-known -->
+        <module>artifacts</module>
+        <module>features</module>
+        <module>parent</module>
+
+        <!-- Utility parents -->
+        <module>binding-parent</module>
+        <module>testtool-parent</module>
+        <module>single-feature-parent</module>
+        <module>feature-repo-parent</module>
+
         <!-- Common infra -->
         <module>concepts</module>
         <module>util</module>
 
         <!-- Subsystems -->
         <module>bgp</module>
+        <module>bmp</module>
         <module>pcep</module>
         <module>programming</module>
         <module>rsvp</module>
         <module>topology</module>
+        <module>config-loader</module>
 
-        <!-- Integration tests -->
-        <module>integration-tests</module>
+        <!--Test tools -->
+        <module>data-change-counter</module>
+        <module>testtool-util</module>
 
-        <!-- Parents -->
-        <module>commons/parent</module>
+        <!-- Minimal complete distribution -->
+        <module>distribution-karaf</module>
     </modules>
 
     <build>
         <plugins>
+            <plugin>
+                <artifactId>maven-deploy-plugin</artifactId>
+                <configuration>
+                    <skip>true</skip>
+                </configuration>
+            </plugin>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-javadoc-plugin</artifactId>
@@ -73,7 +93,6 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-project-info-reports-plugin</artifactId>
-                <version>${maven.info.reports.version}</version>
                 <reportSets>
                     <reportSet>
                         <reports>
                     </reportSet>
                 </reportSets>
             </plugin>
-            <!--plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-javadoc-plugin</artifactId>
-                <reportSets>
-                    <reportSet>
-                        <id>aggregate</id>
-                        <reports>
-                            <report>aggregate</report>
-                        </reports>
-                    </reportSet>
-                </reportSets>
-            </plugin-->
-            <!--plugin>
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>findbugs-maven-plugin</artifactId>
-                <version>2.4.0</version>
-                <configuration>
-                    <effort>Max</effort>
-                    <threshold>Low</threshold>
-                    <goal>site</goal>
-                </configuration>
-            </plugin-->
         </plugins>
     </reporting>
-
 </project>