You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2015/01/06 21:12:20 UTC

svn commit: r1649924 - /maven/plugins/trunk/maven-pmd-plugin/pom.xml

Author: michaelo
Date: Tue Jan  6 20:12:20 2015
New Revision: 1649924

URL: http://svn.apache.org/r1649924
Log:
[MPMD-201] Clean up unused and used undeclared dependencies

Modified:
    maven/plugins/trunk/maven-pmd-plugin/pom.xml

Modified: maven/plugins/trunk/maven-pmd-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-pmd-plugin/pom.xml?rev=1649924&r1=1649923&r2=1649924&view=diff
==============================================================================
--- maven/plugins/trunk/maven-pmd-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-pmd-plugin/pom.xml Tue Jan  6 20:12:20 2015
@@ -151,6 +151,7 @@ under the License.
       <groupId>dom4j</groupId>
       <artifactId>dom4j</artifactId>
       <version>1.6.1</version>
+      <scope>runtime</scope>
       <exclusions>
         <exclusion>
           <artifactId>xml-apis</artifactId>
@@ -198,11 +199,13 @@ under the License.
       <groupId>net.sourceforge.pmd</groupId>
       <artifactId>pmd-javascript</artifactId>
       <version>${pmdVersion}</version>
+      <scope>runtime</scope>
     </dependency>
     <dependency>
       <groupId>net.sourceforge.pmd</groupId>
       <artifactId>pmd-jsp</artifactId>
       <version>${pmdVersion}</version>
+      <scope>runtime</scope>
     </dependency>
 
     <!-- test -->
@@ -213,12 +216,6 @@ under the License.
       <scope>test</scope>
     </dependency>
     <dependency>
-        <groupId>junit</groupId>
-        <artifactId>junit</artifactId>
-        <version>4.10</version>
-        <scope>test</scope>
-    </dependency>
-    <dependency>
       <groupId>com.github.tomakehurst</groupId>
       <artifactId>wiremock</artifactId>
       <version>1.52</version>
@@ -237,6 +234,12 @@ under the License.
       <version>4.3.5</version>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+      <version>2.4</version>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 
   <build>