[jbossws-commits] JBossWS SVN: r6796 - in stack/native/branches/tdiesler/trunk: modules/jaxrpc-impl and 6 other directories.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Wed Apr 30 12:52:57 EDT 2008


Author: thomas.diesler at jboss.com
Date: 2008-04-30 12:52:57 -0400 (Wed, 30 Apr 2008)
New Revision: 6796

Added:
   stack/native/branches/tdiesler/trunk/modules/jaxrpc-impl/pom.xml
   stack/native/branches/tdiesler/trunk/modules/jaxws-impl/pom.xml
   stack/native/branches/tdiesler/trunk/modules/saaj-impl/pom.xml
   stack/native/branches/tdiesler/trunk/modules/saaj-impl/src/main/resources/
   stack/native/branches/tdiesler/trunk/modules/saaj-impl/src/main/resources/META-INF/
Removed:
   stack/native/branches/tdiesler/trunk/src/main/resources/jboss-saaj.jar/META-INF/
Modified:
   stack/native/branches/tdiesler/trunk/.classpath
   stack/native/branches/tdiesler/trunk/modules/jaxws-impl/src/main/java/javax/xml/ws/spi/ServiceDelegate.java
   stack/native/branches/tdiesler/trunk/pom.xml
Log:


Modified: stack/native/branches/tdiesler/trunk/.classpath
===================================================================
--- stack/native/branches/tdiesler/trunk/.classpath	2008-04-30 16:27:00 UTC (rev 6795)
+++ stack/native/branches/tdiesler/trunk/.classpath	2008-04-30 16:52:57 UTC (rev 6796)
@@ -1,5 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <classpath>
+	<classpathentry kind="src" path="modules/jaxws-impl/src/main/java"/>
+	<classpathentry kind="src" path="modules/saaj-impl/src/main/java"/>
+	<classpathentry kind="src" path="modules/jaxrpc-impl/src/main/java"/>
 	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
 	<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
 	<classpathentry kind="output" path="target/eclipse-classes"/>

Added: stack/native/branches/tdiesler/trunk/modules/jaxrpc-impl/pom.xml
===================================================================
--- stack/native/branches/tdiesler/trunk/modules/jaxrpc-impl/pom.xml	                        (rev 0)
+++ stack/native/branches/tdiesler/trunk/modules/jaxrpc-impl/pom.xml	2008-04-30 16:52:57 UTC (rev 6796)
@@ -0,0 +1,30 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  
+  <name>JBoss Web Services - Stack Native JAX-RPC</name>
+  <artifactId>jbossws-native-jaxrpc</artifactId>
+  <packaging>jar</packaging>
+  
+  <!-- Parent -->
+  <parent>
+    <groupId>org.jboss.ws</groupId>
+    <artifactId>jbossws-native</artifactId>
+    <version>3.0.2-SNAPSHOT</version>
+  </parent>
+  
+  <!-- Dependencies -->
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.ws</groupId>
+      <artifactId>jbossws-native-saaj</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>servlet-api</artifactId>
+      <scope>provided</scope>
+    </dependency>
+  </dependencies>
+  
+</project>


Property changes on: stack/native/branches/tdiesler/trunk/modules/jaxrpc-impl/pom.xml
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: stack/native/branches/tdiesler/trunk/modules/jaxws-impl/pom.xml
===================================================================
--- stack/native/branches/tdiesler/trunk/modules/jaxws-impl/pom.xml	                        (rev 0)
+++ stack/native/branches/tdiesler/trunk/modules/jaxws-impl/pom.xml	2008-04-30 16:52:57 UTC (rev 6796)
@@ -0,0 +1,29 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  
+  <name>JBoss Web Services - Stack Native JAX-WS</name>
+  <artifactId>jbossws-native-jaxws</artifactId>
+  <packaging>jar</packaging>
+  
+  <!-- Parent -->
+  <parent>
+    <groupId>org.jboss.ws</groupId>
+    <artifactId>jbossws-native</artifactId>
+    <version>3.0.2-SNAPSHOT</version>
+  </parent>
+  
+  <!-- Dependencies -->
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.ws</groupId>
+      <artifactId>jbossws-native-saaj</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>javax.xml.bind</groupId>
+      <artifactId>jaxb-api</artifactId>
+    </dependency>
+  </dependencies>
+  
+</project>


Property changes on: stack/native/branches/tdiesler/trunk/modules/jaxws-impl/pom.xml
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Modified: stack/native/branches/tdiesler/trunk/modules/jaxws-impl/src/main/java/javax/xml/ws/spi/ServiceDelegate.java
===================================================================
--- stack/native/branches/tdiesler/trunk/modules/jaxws-impl/src/main/java/javax/xml/ws/spi/ServiceDelegate.java	2008-04-30 16:27:00 UTC (rev 6795)
+++ stack/native/branches/tdiesler/trunk/modules/jaxws-impl/src/main/java/javax/xml/ws/spi/ServiceDelegate.java	2008-04-30 16:52:57 UTC (rev 6796)
@@ -27,7 +27,6 @@
 
 import javax.xml.bind.JAXBContext;
 import javax.xml.namespace.QName;
-import javax.xml.rpc.ServiceException;
 import javax.xml.ws.Dispatch;
 import javax.xml.ws.Service;
 import javax.xml.ws.WebServiceException;

Added: stack/native/branches/tdiesler/trunk/modules/saaj-impl/pom.xml
===================================================================
--- stack/native/branches/tdiesler/trunk/modules/saaj-impl/pom.xml	                        (rev 0)
+++ stack/native/branches/tdiesler/trunk/modules/saaj-impl/pom.xml	2008-04-30 16:52:57 UTC (rev 6796)
@@ -0,0 +1,16 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  
+  <name>JBoss Web Services - Stack Native SAAJ</name>
+  <artifactId>jbossws-native-saaj</artifactId>
+  <packaging>jar</packaging>
+  
+  <!-- Parent -->
+  <parent>
+    <groupId>org.jboss.ws</groupId>
+    <artifactId>jbossws-native</artifactId>
+    <version>3.0.2-SNAPSHOT</version>
+  </parent>
+  
+</project>


Property changes on: stack/native/branches/tdiesler/trunk/modules/saaj-impl/pom.xml
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Copied: stack/native/branches/tdiesler/trunk/modules/saaj-impl/src/main/resources/META-INF (from rev 6790, stack/native/branches/tdiesler/trunk/src/main/resources/jboss-saaj.jar/META-INF)

Modified: stack/native/branches/tdiesler/trunk/pom.xml
===================================================================
--- stack/native/branches/tdiesler/trunk/pom.xml	2008-04-30 16:27:00 UTC (rev 6795)
+++ stack/native/branches/tdiesler/trunk/pom.xml	2008-04-30 16:52:57 UTC (rev 6796)
@@ -29,12 +29,12 @@
     <version>1.0-SNAPSHOT</version>
   </parent>
   
-  <!-- Modules -->
+  <!-- Modules - ->
   <modules>
     <module>modules/management</module>
     <module>modules/server</module>
     <module>modules/client</module>
-  </modules>
+  </modules-->
   
   <!-- Properties -->
   <properties>




More information about the jbossws-commits mailing list