Migrate Matchers.any()
[bgpcep.git] / pom.xml
diff --git a/pom.xml b/pom.xml
index 45fd1e94f9ac19cbb713066d969794601d26c539..204ba6e37237f11d6b0c65edbacfa3a10039e94d 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -7,7 +7,6 @@
  terms of the Eclipse Public License v1.0 which accompanies this distribution,
  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">
 
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>odlparent-lite</artifactId>
-        <version>2.0.1</version>
+        <version>4.0.2</version>
         <relativePath/>
     </parent>
 
     <groupId>org.opendaylight.bgpcep</groupId>
     <artifactId>bgpcep-aggregator</artifactId>
-    <version>0.8.0-SNAPSHOT</version>
+    <version>0.11.0-SNAPSHOT</version>
     <packaging>pom</packaging>
     <name>bgpcep</name> <!-- Used by Sonar to set project name -->
     <description>BGPCEP top-level aggregator</description>
 
         <!-- Utility parents -->
         <module>binding-parent</module>
-        <module>bundle-parent</module>
-        <module>config-parent</module>
+        <module>testtool-parent</module>
+        <module>single-feature-parent</module>
+        <module>feature-repo-parent</module>
 
         <!-- Common infra -->
         <module>concepts</module>
-        <module>dependency-version-management</module>
         <module>util</module>
 
         <!-- Subsystems -->
         <module>bgp</module>
+        <module>bmp</module>
         <module>pcep</module>
         <module>programming</module>
         <module>rsvp</module>
         <module>topology</module>
-
-        <!-- Integration tests -->
-        <module>integration-tests</module>
+        <module>config-loader</module>
 
         <!--Test tools -->
         <module>data-change-counter</module>
         <module>testtool-util</module>
-        <module>data-change-counter-controller-config</module>
 
         <!-- Minimal complete distribution -->
         <module>distribution-karaf</module>
@@ -95,7 +92,6 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-project-info-reports-plugin</artifactId>
-                <version>${maven.info.reports.version}</version>
                 <reportSets>
                     <reportSet>
                         <reports>
 
   <profiles>
     <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>
+      <id>karaf</id>
       <activation>
-        <file>
-          <exists>${user.dir}/deploy-site.xml</exists>
-        </file>
+        <activeByDefault>true</activeByDefault>
       </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>
-            </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
+      <modules>
+        <module>distribution-karaf</module>
+      </modules>
     </profile>
   </profiles>
-
-  <!--
-      Maven Site Configuration
-
-      The following configuration is necessary for maven-site-plugin to
-      correctly identify the correct deployment path for OpenDaylight Maven
-      sites.
-  -->
-  <url>${odl.site.url}/${project.groupId}/${stream}/</url>
-
-  <distributionManagement>
-    <site>
-      <id>opendaylight-site</id>
-      <url>${nexus.site.url}/</url>
-    </site>
-  </distributionManagement>
 </project>