You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by di...@apache.org on 2007/07/12 05:16:41 UTC

svn commit: r555478 - in /webservices/axis2/trunk/java/modules: kernel/pom.xml parent/pom.xml

Author: dims
Date: Wed Jul 11 20:16:41 2007
New Revision: 555478

URL: http://svn.apache.org/viewvc?view=rev&rev=555478
Log:
Fix for AXIS2-2950 - Axis2 build failure - JDK 1.4

Modified:
    webservices/axis2/trunk/java/modules/kernel/pom.xml
    webservices/axis2/trunk/java/modules/parent/pom.xml

Modified: webservices/axis2/trunk/java/modules/kernel/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/kernel/pom.xml?view=diff&rev=555478&r1=555477&r2=555478
==============================================================================
--- webservices/axis2/trunk/java/modules/kernel/pom.xml (original)
+++ webservices/axis2/trunk/java/modules/kernel/pom.xml Wed Jul 11 20:16:41 2007
@@ -111,6 +111,7 @@
 						<configuration>
                             <excludes>
                                 <exclude>**/*NIOSSL*.java</exclude>
+                                <exclude>**/HttpCoreNIOListener*.java</exclude>
                                 <exclude>**/SSLServerIOEventDispatch.java</exclude>
                                 <exclude>**/SSLClientIOEventDispatch.java</exclude>
                             </excludes>

Modified: webservices/axis2/trunk/java/modules/parent/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/parent/pom.xml?view=diff&rev=555478&r1=555477&r2=555478
==============================================================================
--- webservices/axis2/trunk/java/modules/parent/pom.xml (original)
+++ webservices/axis2/trunk/java/modules/parent/pom.xml Wed Jul 11 20:16:41 2007
@@ -826,12 +826,6 @@
             <version>1.4</version>
         </dependency>
 
-        <!-- Junit testing environment-->
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-        </dependency>
-
         <dependency>
             <groupId>xmlunit</groupId>
             <artifactId>xmlunit</artifactId>
@@ -849,6 +843,50 @@
         </dependency>
 
     </dependencies>
+    <profiles>
+        <profile>
+            <id>java14</id>
+            <activation>
+                <jdk>1.4</jdk>
+            </activation>
+            <dependencies>
+                <!-- Junit testing environment-->
+                <dependency>
+                    <groupId>junit</groupId>
+                    <artifactId>junit</artifactId>
+                    <version>3.8.2</version>
+                </dependency>
+            </dependencies>
+        </profile>
+        <profile>
+            <id>java15</id>
+            <activation>
+                <jdk>1.5</jdk>
+            </activation>
+            <dependencies>
+                <!-- Junit testing environment-->
+                <dependency>
+                    <groupId>junit</groupId>
+                    <artifactId>junit</artifactId>
+                    <version>${junit.version}</version>
+                </dependency>
+            </dependencies>
+        </profile>
+        <profile>
+            <id>java16</id>
+            <activation>
+                <jdk>1.6</jdk>
+            </activation>
+            <dependencies>
+                <!-- Junit testing environment-->
+                <dependency>
+                    <groupId>junit</groupId>
+                    <artifactId>junit</artifactId>
+                    <version>${junit.version}</version>
+                </dependency>
+            </dependencies>
+        </profile>
+    </profiles>
     <distributionManagement>
         <repository>
             <id>apache-repo</id>



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org