You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pluto-scm@portals.apache.org by cz...@apache.org on 2007/03/10 17:21:49 UTC

svn commit: r516742 - in /portals/pluto/branches/pluto-1.1.x: pluto-util/pom.xml pluto-util/src/test/java/org/apache/pluto/util/assemble/war/WarAssemblerTest.java pom.xml

Author: cziegeler
Date: Sat Mar 10 08:21:48 2007
New Revision: 516742

URL: http://svn.apache.org/viewvc?view=rev&rev=516742
Log:
Add missing dependency to junit, remove dependency to httpclient.
Remove unused versions from main pom.

Modified:
    portals/pluto/branches/pluto-1.1.x/pluto-util/pom.xml
    portals/pluto/branches/pluto-1.1.x/pluto-util/src/test/java/org/apache/pluto/util/assemble/war/WarAssemblerTest.java
    portals/pluto/branches/pluto-1.1.x/pom.xml

Modified: portals/pluto/branches/pluto-1.1.x/pluto-util/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/branches/pluto-1.1.x/pluto-util/pom.xml?view=diff&rev=516742&r1=516741&r2=516742
==============================================================================
--- portals/pluto/branches/pluto-1.1.x/pluto-util/pom.xml (original)
+++ portals/pluto/branches/pluto-1.1.x/pluto-util/pom.xml Sat Mar 10 08:21:48 2007
@@ -31,12 +31,7 @@
       <groupId>commons-cli</groupId>
       <artifactId>commons-cli</artifactId>
       <version>${commons-cli.version}</version>
-    </dependency>
-    <dependency>
-      <groupId>commons-httpclient</groupId>
-      <artifactId>commons-httpclient</artifactId>
-      <version>${commons-httpclient.version}</version>
-    </dependency>
+    </dependency>
     <dependency>
       <groupId>commons-digester</groupId>
       <artifactId>commons-digester</artifactId>
@@ -51,6 +46,12 @@
       <groupId>commons-io</groupId>
       <artifactId>commons-io</artifactId>
       <version>${commons-io.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>${junit.version}</version>
+      <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>xmlunit</groupId>

Modified: portals/pluto/branches/pluto-1.1.x/pluto-util/src/test/java/org/apache/pluto/util/assemble/war/WarAssemblerTest.java
URL: http://svn.apache.org/viewvc/portals/pluto/branches/pluto-1.1.x/pluto-util/src/test/java/org/apache/pluto/util/assemble/war/WarAssemblerTest.java?view=diff&rev=516742&r1=516741&r2=516742
==============================================================================
--- portals/pluto/branches/pluto-1.1.x/pluto-util/src/test/java/org/apache/pluto/util/assemble/war/WarAssemblerTest.java (original)
+++ portals/pluto/branches/pluto-1.1.x/pluto-util/src/test/java/org/apache/pluto/util/assemble/war/WarAssemblerTest.java Sat Mar 10 08:21:48 2007
@@ -29,6 +29,7 @@
  * @version $Revision$
  */
 public class WarAssemblerTest extends TestCase {
+
     private File portletFile;
 
     protected void setUp() throws Exception {

Modified: portals/pluto/branches/pluto-1.1.x/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/branches/pluto-1.1.x/pom.xml?view=diff&rev=516742&r1=516741&r2=516742
==============================================================================
--- portals/pluto/branches/pluto-1.1.x/pom.xml (original)
+++ portals/pluto/branches/pluto-1.1.x/pom.xml Sat Mar 10 08:21:48 2007
@@ -235,12 +235,9 @@
         <commons-digester.version>1.8</commons-digester.version>
         <commons-collections.version>3.2</commons-collections.version>
         <commons-cli.version>1.0</commons-cli.version>
-        <commons-httpclient.version>3.0.1</commons-httpclient.version>
-        <commons-beanutils.version>1.7.0</commons-beanutils.version>
         <commons-logging.version>1.1</commons-logging.version>
         <log4j.version>1.2.14</log4j.version>
         <springframework.version>2.0.2</springframework.version>
-        <plexus.version>1.0.4</plexus.version>
         <maven.version>2.0.5</maven.version>
         <ant.version>1.6.5</ant.version>
         <junit.version>3.8.2</junit.version>