Author: veithen
Date: Sat Dec 31 12:26:28 2011
New Revision: 1226076

URL: http://svn.apache.org/viewvc?rev=1226076&view=rev
Log:
Mavenized another bunch of tests.

Added:
    axis/axis1/java/trunk/integration/src/
    axis/axis1/java/trunk/integration/src/test/
    axis/axis1/java/trunk/integration/src/test/java/
    axis/axis1/java/trunk/integration/src/test/java/test/
    axis/axis1/java/trunk/integration/src/test/java/test/GenericLocalTest.java
      - copied unchanged from r1226073, 
axis/axis1/java/trunk/axis/src/test/java/test/GenericLocalTest.java
    axis/axis1/java/trunk/integration/src/test/java/test/encoding/
      - copied from r1226073, axis/axis1/java/trunk/test/encoding/
Removed:
    
axis/axis1/java/trunk/integration/src/test/java/test/encoding/PackageTests.java
    axis/axis1/java/trunk/integration/src/test/java/test/encoding/build.xml
    axis/axis1/java/trunk/test/encoding/
Modified:
    axis/axis1/java/trunk/axis/pom.xml
    axis/axis1/java/trunk/integration/pom.xml
    axis/axis1/java/trunk/pom.xml

Modified: axis/axis1/java/trunk/axis/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis/pom.xml?rev=1226076&r1=1226075&r2=1226076&view=diff
==============================================================================
--- axis/axis1/java/trunk/axis/pom.xml (original)
+++ axis/axis1/java/trunk/axis/pom.xml Sat Dec 31 12:26:28 2011
@@ -68,6 +68,12 @@
             <artifactId>commons-httpclient</artifactId>
             <version>3.0.1</version>
             <optional>true</optional>
+            <exclusions>
+                <exclusion>
+                    <groupId>junit</groupId>
+                    <artifactId>junit</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
         <dependency>
             <groupId>org.apache.geronimo.specs</groupId>
@@ -100,9 +106,13 @@
             <optional>true</optional>
         </dependency>
         <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
             <groupId>xmlunit</groupId>
             <artifactId>xmlunit</artifactId>
-            <version>1.0</version>
             <scope>test</scope>
         </dependency>
         <dependency>

Modified: axis/axis1/java/trunk/integration/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis1/java/trunk/integration/pom.xml?rev=1226076&r1=1226075&r2=1226076&view=diff
==============================================================================
--- axis/axis1/java/trunk/integration/pom.xml (original)
+++ axis/axis1/java/trunk/integration/pom.xml Sat Dec 31 12:26:28 2011
@@ -33,6 +33,16 @@
             <artifactId>axis</artifactId>
             <version>${project.version}</version>
         </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>xmlunit</groupId>
+            <artifactId>xmlunit</artifactId>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
     <build>
         <plugins>
@@ -63,6 +73,15 @@
                     </execution>
                 </executions>
             </plugin>
+            <plugin>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <!-- TODO: this test causes an OOM error; investigate 
why -->
+                        <exclude>test/encoding/TestSer.java</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 </project>

Modified: axis/axis1/java/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis1/java/trunk/pom.xml?rev=1226076&r1=1226075&r2=1226076&view=diff
==============================================================================
--- axis/axis1/java/trunk/pom.xml (original)
+++ axis/axis1/java/trunk/pom.xml Sat Dec 31 12:26:28 2011
@@ -37,6 +37,20 @@
         <module>axis-maven-plugin</module>
         <module>integration</module>
     </modules>
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>junit</groupId>
+                <artifactId>junit</artifactId>
+                <version>3.8.2</version>
+            </dependency>
+            <dependency>
+                <groupId>xmlunit</groupId>
+                <artifactId>xmlunit</artifactId>
+                <version>1.0</version>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
     <build>
         <pluginManagement>
             <plugins>


Reply via email to