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 ve...@apache.org on 2005/06/03 16:01:11 UTC

svn commit: r179792 - in /webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/saaj: maven.xml notes.txt project.properties project.xml src/javax/ src/org/ test/

Author: venkat
Date: Fri Jun  3 07:01:09 2005
New Revision: 179792

URL: http://svn.apache.org/viewcvs?rev=179792&view=rev
Log:
Adding files for SAAJ implementation over OM - from Ashutosh.

Added:
    webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/saaj/maven.xml
    webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/saaj/notes.txt
    webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/saaj/project.properties
    webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/saaj/project.xml
    webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/saaj/src/javax/
    webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/saaj/src/org/
    webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/saaj/test/

Added: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/saaj/maven.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/saaj/maven.xml?rev=179792&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/saaj/maven.xml (added)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/saaj/maven.xml Fri Jun  3 07:01:09 2005
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!-- $Revision: 1.21 $ $Date: 2004-10-27 20:54:09 +0600 (Wed, 27 Oct 2004) $ -->
+
+<project default="jar"
+    xmlns:j="jelly:core"
+    xmlns:maven="jelly:maven"
+    xmlns:deploy="deploy"
+    xmlns:ant="jelly:ant">
+    <postGoal name="test:compile">
+	    <jar jarfile="target/axis2-saaj.mar" basedir="target/test-classes" >
+			<include name="**" />
+		</jar>
+     </postGoal> 
+ </project>

Added: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/saaj/notes.txt
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/saaj/notes.txt?rev=179792&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/saaj/notes.txt (added)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/saaj/notes.txt Fri Jun  3 07:01:09 2005
@@ -0,0 +1 @@
+1. Look at SOAPConnection class. After change in InvokeBlocking() of Call, may have regression issues.
\ No newline at end of file

Added: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/saaj/project.properties
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/saaj/project.properties?rev=179792&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/saaj/project.properties (added)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/saaj/project.properties Fri Jun  3 07:01:09 2005
@@ -0,0 +1,18 @@
+# -------------------------------------------------------------------
+# Copyright 2001-2004 The Apache Software Foundation.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# -------------------------------------------------------------------
+
+maven.repo.remote=http://cvs.apache.org/repository/, http://www.ibiblio.org/maven,http://www.apache.org/dist/java-repository/
+maven.multiproject.type=jar

Added: webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/saaj/project.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/saaj/project.xml?rev=179792&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/saaj/project.xml (added)
+++ webservices/axis/trunk/archive/java/scratch/ashu_jaya_venkat/saaj/project.xml Fri Jun  3 07:01:09 2005
@@ -0,0 +1,128 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+/*
+ * Copyright 2001-2004 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+ -->
+<project>
+    <pomVersion>3</pomVersion>
+    <extend>../../etc/project.xml</extend>
+
+    <id>saaj-impl</id>
+    <name>saaj-impl</name>
+    <description>Total SAAJ implementation</description>
+    
+  <build>
+        <nagEmailAddress>axis-dev@ws.apache.org</nagEmailAddress>
+        <sourceDirectory>src</sourceDirectory>
+        <unitTestSourceDirectory>test</unitTestSourceDirectory>
+    
+    	 <!--<sourceModifications>
+    		<sourceModification>
+    			<className>javax.activation.DataHandler</className>
+    			<excludes>
+    				<exclude>javax/xml/soap/**.java</exclude>
+    				<exclude>org/apache/axis/saaj/**.java</exclude>
+    			</excludes>
+    		</sourceModification>
+    	</sourceModifications> -->   	
+    
+        <unitTest>
+         <includes>
+            <include>**/*Test.java</include>
+          </includes> 
+          
+         <resources>
+             <resource>
+                 	<directory>${basedir}/test-resources</directory>
+              </resource>
+              <resource>
+            		<directory>conf</directory>
+           			 <includes>
+              			<include>**/*.properties</include>
+            		</includes>
+          </resource>
+          <resource>
+           	 	<directory>src</directory>
+            	<includes>
+              		<include>**/*.properties</include>
+              		<include>**/*.xml</include>
+            	</includes>
+          </resource>
+         </resources>
+        </unitTest>
+        
+        <resources>
+          <resource>
+            <directory>conf</directory>
+            <includes>
+              <include>**/*.properties</include>
+            </includes>
+          </resource>
+          <resource>
+            <directory>src</directory>
+            <includes>
+              <include>**/*.properties</include>
+              <include>**/*.xml</include>
+            </includes>
+          </resource>
+        </resources>
+    </build>
+
+    <dependencies>
+        <dependency>
+            <groupId>axis</groupId>
+            <artifactId>axis2-xml</artifactId>
+            <version>${pom.currentVersion}</version>
+        </dependency> 
+        
+        <dependency>
+            <groupId>axis</groupId>
+            <artifactId>axis2-core</artifactId>
+            <version>${pom.currentVersion}</version>
+        </dependency>
+        <!-- external JARs -->
+
+	<dependency>
+            <groupId>stax</groupId>
+            <artifactId>stax</artifactId>
+            <version>1.1.1-dev</version>
+            <properties>
+                <module>true</module>
+            </properties>
+		<url>http://dist.codehaus.org/stax/jars/</url>
+        </dependency>
+        
+        <dependency>
+	   <groupId>stax</groupId>
+	    <artifactId>stax-api</artifactId>
+	    <version>1.0</version>
+	    <properties>
+	       <module>true</module>
+	     </properties>
+		<url>http://dist.codehaus.org/stax/jars/</url>
+        </dependency>
+        
+       <dependency>
+	    <groupId>j2ee</groupId>
+	    <artifactId>activation</artifactId>
+	    <jar>activation.jar</jar>
+	    <properties>
+	           <module>false</module>
+	    </properties>
+        </dependency>
+        
+        </dependencies>
+</project>