You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by de...@apache.org on 2012/09/23 14:52:57 UTC

svn commit: r1389033 - in /maven/doxia/doxia-tools/trunk: doxia-converter/pom.xml doxia-linkcheck/pom.xml doxia-tools/pom.xml

Author: dennisl
Date: Sun Sep 23 12:52:56 2012
New Revision: 1389033

URL: http://svn.apache.org/viewvc?rev=1389033&view=rev
Log:
Sort out test dependencies. We should not have <dependencies> declared in a parent POM, so I moved them to the projects that actually use them.

Modified:
    maven/doxia/doxia-tools/trunk/doxia-converter/pom.xml
    maven/doxia/doxia-tools/trunk/doxia-linkcheck/pom.xml
    maven/doxia/doxia-tools/trunk/doxia-tools/pom.xml

Modified: maven/doxia/doxia-tools/trunk/doxia-converter/pom.xml
URL: http://svn.apache.org/viewvc/maven/doxia/doxia-tools/trunk/doxia-converter/pom.xml?rev=1389033&r1=1389032&r2=1389033&view=diff
==============================================================================
--- maven/doxia/doxia-tools/trunk/doxia-converter/pom.xml (original)
+++ maven/doxia/doxia-tools/trunk/doxia-converter/pom.xml Sun Sep 23 12:52:56 2012
@@ -144,6 +144,11 @@ under the License.
       <groupId>org.codehaus.plexus</groupId>
       <artifactId>plexus-utils</artifactId>
     </dependency>
+    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-container-default</artifactId>
+      <scope>test</scope>
+    </dependency>
 
     <!-- Test -->
     <dependency>

Modified: maven/doxia/doxia-tools/trunk/doxia-linkcheck/pom.xml
URL: http://svn.apache.org/viewvc/maven/doxia/doxia-tools/trunk/doxia-linkcheck/pom.xml?rev=1389033&r1=1389032&r2=1389033&view=diff
==============================================================================
--- maven/doxia/doxia-tools/trunk/doxia-linkcheck/pom.xml (original)
+++ maven/doxia/doxia-tools/trunk/doxia-linkcheck/pom.xml Sun Sep 23 12:52:56 2012
@@ -76,6 +76,13 @@ under the License.
       <groupId>org.codehaus.plexus</groupId>
       <artifactId>plexus-component-annotations</artifactId>
     </dependency>
+
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.2</version>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 
   <build>

Modified: maven/doxia/doxia-tools/trunk/doxia-tools/pom.xml
URL: http://svn.apache.org/viewvc/maven/doxia/doxia-tools/trunk/doxia-tools/pom.xml?rev=1389033&r1=1389032&r2=1389033&view=diff
==============================================================================
--- maven/doxia/doxia-tools/trunk/doxia-tools/pom.xml (original)
+++ maven/doxia/doxia-tools/trunk/doxia-tools/pom.xml Sun Sep 23 12:52:56 2012
@@ -197,14 +197,6 @@ under the License.
       </dependency>
     </dependencies>
   </dependencyManagement>
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.2</version>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
 
   <build>
     <pluginManagement>