Bump versions by x.(y+1).z
[lispflowmapping.git] / pom.xml
diff --git a/pom.xml b/pom.xml
index 698ce20d47043e86cf84b2f17e355271663543cf..c5c6c784584efd6d762eecd032d5d0432e60d108 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
   <parent>
     <groupId>org.opendaylight.lispflowmapping</groupId>
     <artifactId>lispflowmapping-commons</artifactId>
-    <version>1.8.0-SNAPSHOT</version>
+    <version>1.20.0-SNAPSHOT</version>
     <relativePath>commons/parent</relativePath>
   </parent>
 
   <!-- Used by Sonar to set project name -->
   <name>lispflowmapping</name>
 
-  <prerequisites>
-    <maven>3.1.1</maven>
-  </prerequisites>
-
   <modules>
     <module>commons/parent</module>
     <module>commons/build_tools</module>
-    <module>commons/unittest_tools</module>
     <module>artifacts</module>
     <module>mappingservice</module>
-    <module>ui</module>
     <module>features</module>
     <module>lispflowmapping-karaf</module>
-    <!--
     <module>integrationtest</module>
-    -->
   </modules>
 
   <build>
+    <pluginManagement>
+      <plugins>
+          <plugin>
+          <!-- Downgrade javadoc plugin, as 3.1.0+ breaks with maven.compiler.release=11 + javadoc:aggregate -->
+          <artifactId>maven-javadoc-plugin</artifactId>
+          <version>3.0.1</version>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+
     <plugins>
 <!--       <plugin>
         In this project we want to automatically sort all poms, thus we
       </plugin>
     </plugins>
   </build>
-
-  <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>
-      <activation>
-        <file>
-          <exists>${user.dir}/deploy-site.xml</exists>
-        </file>
-      </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>
-    </profile>
-  </profiles>
 </project>