Adjust the release notes given SpotBugs exclusions
[odlparent.git] / bundles-test-lib / pom.xml
index 58dcbc784c9b3a06fbc9365031f337e4f0ae7217..358f6f89051b14644eb20589a06cd766e116a5f6 100644 (file)
 
   <parent>
     <groupId>org.opendaylight.odlparent</groupId>
-    <artifactId>odlparent</artifactId>
-    <version>1.9.1-SNAPSHOT</version>
-    <relativePath>../odlparent</relativePath>
+    <artifactId>bundle-parent</artifactId>
+    <version>4.0.0-SNAPSHOT</version>
+    <relativePath>../bundle-parent</relativePath>
   </parent>
 
   <artifactId>bundles-test-lib</artifactId>
   <name>ODL :: odlparent :: ${project.artifactId}</name>
+  <packaging>bundle</packaging>
+
+  <properties>
+    <!-- Opt-in to our optional code quality checks -->
+    <pmd.cpd.fail>true</pmd.cpd.fail>                    <!-- Copy/paste detection -->
+    <duplicate-finder.skip>false</duplicate-finder.skip> <!-- Classpath duplicates -->
+  </properties>
 
   <dependencies>
     <dependency>
@@ -71,8 +78,8 @@
         </configuration>
       </plugin>
       <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>findbugs-maven-plugin</artifactId>
+        <groupId>com.github.spotbugs</groupId>
+        <artifactId>spotbugs-maven-plugin</artifactId>
         <configuration>
           <failOnError>true</failOnError>
         </configuration>
     </plugins>
   </build>
 
-  <!--
-    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}/${project.artifactId}/</url>
-
-  <distributionManagement>
-    <site>
-      <id>opendaylight-site</id>
-      <url>${nexus.site.url}/${project.artifactId}/</url>
-    </site>
-  </distributionManagement>
-
 </project>