Remove superfluous junit API link
[odlparent.git] / odlparent-lite / pom.xml
index ae2014b5d5c15abe7baa9f5ec4530e0436d1139c..2337da55d86fcf45b9b63cf131c6e3f4f70f11cb 100644 (file)
@@ -18,7 +18,7 @@
 
   <groupId>org.opendaylight.odlparent</groupId>
   <artifactId>odlparent-lite</artifactId>
-  <version>4.0.3-SNAPSHOT</version>
+  <version>5.0.0-SNAPSHOT</version>
   <packaging>pom</packaging>
   <name>ODL :: odlparent :: ${project.artifactId}</name>
 
@@ -87,7 +87,7 @@
     <maven.install.skip>false</maven.install.skip>
 
     <!-- Used in neutron, ovsdb -->
-    <jacoco.version>0.8.2</jacoco.version>
+    <jacoco.version>0.8.3</jacoco.version>
   </properties>
 
   <build>
         </plugin>
         <plugin>
           <artifactId>maven-help-plugin</artifactId>
-          <version>3.1.0</version>
+          <version>3.1.1</version>
         </plugin>
         <plugin>
           <artifactId>maven-install-plugin</artifactId>
         </plugin>
         <plugin>
           <artifactId>maven-javadoc-plugin</artifactId>
+          <!-- FIXME: when bumping to 3.1.0 review javadoc-links profile -->
           <version>3.0.1</version>
           <configuration combine.children="append">
             <!-- Keep things quiet except for warnings/errors -->
               </tag>
               <!-- end HelpMojo support -->
             </tags>
-            <detectLinks>false</detectLinks> <!-- TODO: It should work once https://issues.apache.org/jira/browse/MJAVADOC-427 is solved -->
-            <detectOfflineLinks>true</detectOfflineLinks>
           </configuration>
           <executions>
             <execution>
             <dependency>
               <groupId>org.asciidoctor</groupId>
               <artifactId>asciidoctorj-diagram</artifactId>
-              <version>1.5.10</version>
+              <version>1.5.12</version>
             </dependency>
           </dependencies>
         </plugin>
             </execution>
           </executions>
         </plugin>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>versions-maven-plugin</artifactId>
+          <version>2.7</version>
+        </plugin>
         <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
         <plugin>
           <groupId>org.eclipse.m2e</groupId>
       <plugin>
         <groupId>pl.project13.maven</groupId>
         <artifactId>git-commit-id-plugin</artifactId>
-        <version>2.2.5</version>
+        <version>2.2.6</version>
         <executions>
           <execution>
             <id>get-git-infos</id>
         <maven.javadoc.skip>true</maven.javadoc.skip>
         <maven.source.skip>true</maven.source.skip>
         <checkstyle.skip>true</checkstyle.skip>
-        <findbugs.skip>true</findbugs.skip>
         <spotbugs.skip>true</spotbugs.skip>
         <pmd.skip>true</pmd.skip>
         <cpd.skip>true</cpd.skip>
     <profile>
       <!-- Javadocs with links -->
       <id>javadoc-links</id>
+        <activation>
+          <property>
+            <name>odlparent.javadoc-links</name>
+          </property>
+        </activation>
       <build>
         <plugins>
           <plugin>
             <artifactId>maven-javadoc-plugin</artifactId>
             <configuration combine.children="append">
+              <!-- FIXME: these links do not have a trailing slash as a workaround for
+                          https://issues.apache.org/jira/browse/MJAVADOC-532 -->
               <links>
-                <link>http://www.atetric.com/atetric/javadoc/junit/junit/4.11/</link>
-                <link>http://hamcrest.org/JavaHamcrest/javadoc/1.3/</link>
-                <link>http://google.github.io/truth/api/0.42/</link>
-                <link>https://www.slf4j.org/apidocs/</link>
-                <link>https://xerces.apache.org/xerces2-j/javadocs/api/</link>
-                <link>https://google.github.io/guava/releases/25.1-jre/api/docs/</link>
-                <link>http://doc.akka.io/japi/akka/2.5.14/</link>
-                <link>http://netty.io/4.1/api/</link>
-                <link>https://commons.apache.org/proper/commons-lang/javadocs/api-2.6/</link>
-                <link>https://commons.apache.org/proper/commons-lang/javadocs/api-3.8.1/</link>
-                <link>https://commons.apache.org/proper/commons-codec/apidocs/</link>
+                <link>https://junit.org/junit4/javadoc/4.11</link>
+                <link>http://hamcrest.org/JavaHamcrest/javadoc/2.1</link>
+                <link>http://google.github.io/truth/api/0.43</link>
+                <link>https://www.slf4j.org/apidocs</link>
+                <link>https://xerces.apache.org/xerces2-j/javadocs/api</link>
+                <link>https://google.github.io/guava/releases/25.1-jre/api/docs</link>
+                <link>http://doc.akka.io/japi/akka/2.5.21</link>
+                <link>http://netty.io/4.1/api</link>
+                <link>https://commons.apache.org/proper/commons-lang/javadocs/api-2.6</link>
+                <link>https://commons.apache.org/proper/commons-lang/javadocs/api-3.8.1</link>
+                <link>https://commons.apache.org/proper/commons-codec/apidocs</link>
               </links>
             </configuration>
           </plugin>
     </profile>
 
     <profile>
-      <!-- On JDK9-and-later specify html4 javadoc -->
+      <!-- On JDK9-and-later specify html4 javadoc, if requested-->
       <id>jdk9-javadoc</id>
       <activation>
         <jdk>[9,)</jdk>
+        <file>
+          <exists>odl-javadoc-html5-optout</exists>
+        </file>
       </activation>
       <build>
         <plugins>
         </plugins>
       </build>
     </profile>
+
+    <profile>
+      <!-- Disable plugins which are not useful for sonar -->
+      <id>sonar-only</id>
+      <activation>
+        <property>
+          <name>sonar</name>
+        </property>
+      </activation>
+      <properties>
+        <checkstyle.skip>true</checkstyle.skip>
+        <duplicate-finder.skip>true</duplicate-finder.skip>
+        <skip.karaf.featureTest>true</skip.karaf.featureTest>
+        <maven.javadoc.skip>true</maven.javadoc.skip>
+        <maven.source.skip>true</maven.source.skip>
+      </properties>
+    </profile>
   </profiles>
 
   <distributionManagement>