[jbossws-commits] JBossWS SVN: r6751 - in stack/metro/branches/tdiesler/trunk/modules/wsit: src/main and 4 other directories.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Tue Apr 29 10:11:21 EDT 2008


Author: thomas.diesler at jboss.com
Date: 2008-04-29 10:11:21 -0400 (Tue, 29 Apr 2008)
New Revision: 6751

Added:
   stack/metro/branches/tdiesler/trunk/modules/wsit/src/main/etc/
   stack/metro/branches/tdiesler/trunk/modules/wsit/src/main/etc/META-INF/
   stack/metro/branches/tdiesler/trunk/modules/wsit/src/main/etc/META-INF/services/
   stack/metro/branches/tdiesler/trunk/modules/wsit/src/main/etc/META-INF/services/com.sun.tools.ws.api.wsdl.TWSDLExtensionHandler
   stack/metro/branches/tdiesler/trunk/modules/wsit/src/main/scripts/assembly-wsit-tools.xml
Modified:
   stack/metro/branches/tdiesler/trunk/modules/wsit/pom.xml
   stack/metro/branches/tdiesler/trunk/modules/wsit/src/main/scripts/assembly-wsit-rt.xml
Log:


Modified: stack/metro/branches/tdiesler/trunk/modules/wsit/pom.xml
===================================================================
--- stack/metro/branches/tdiesler/trunk/modules/wsit/pom.xml	2008-04-29 13:42:32 UTC (rev 6750)
+++ stack/metro/branches/tdiesler/trunk/modules/wsit/pom.xml	2008-04-29 14:11:21 UTC (rev 6751)
@@ -31,13 +31,16 @@
       <plugin>
         <artifactId>maven-assembly-plugin</artifactId>
         <configuration>
+          <finalName>${project.build.finalName}</finalName>
           <appendAssemblyId>true</appendAssemblyId>
           <descriptors>
             <descriptor>src/main/scripts/assembly-wsit-rt.xml</descriptor>
+            <descriptor>src/main/scripts/assembly-wsit-tools.xml</descriptor>
           </descriptors>
         </configuration>
         <executions>
           <execution>
+            <id>jbossws-metro-wsit</id>
             <phase>package</phase>
             <goals>
               <goal>attached</goal>

Added: stack/metro/branches/tdiesler/trunk/modules/wsit/src/main/etc/META-INF/services/com.sun.tools.ws.api.wsdl.TWSDLExtensionHandler
===================================================================
--- stack/metro/branches/tdiesler/trunk/modules/wsit/src/main/etc/META-INF/services/com.sun.tools.ws.api.wsdl.TWSDLExtensionHandler	                        (rev 0)
+++ stack/metro/branches/tdiesler/trunk/modules/wsit/src/main/etc/META-INF/services/com.sun.tools.ws.api.wsdl.TWSDLExtensionHandler	2008-04-29 14:11:21 UTC (rev 6751)
@@ -0,0 +1,2 @@
+com.sun.tools.ws.policy.jaxws.PolicyExtensionHandler
+

Modified: stack/metro/branches/tdiesler/trunk/modules/wsit/src/main/scripts/assembly-wsit-rt.xml
===================================================================
--- stack/metro/branches/tdiesler/trunk/modules/wsit/src/main/scripts/assembly-wsit-rt.xml	2008-04-29 13:42:32 UTC (rev 6750)
+++ stack/metro/branches/tdiesler/trunk/modules/wsit/src/main/scripts/assembly-wsit-rt.xml	2008-04-29 14:11:21 UTC (rev 6751)
@@ -1,7 +1,7 @@
 <assembly 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/xsd/assembly-1.1.0-SNAPSHOT.xsd">
   
-  <id>wsit-rt</id>
+  <id>rt</id>
   <formats>
     <format>jar</format>
   </formats>
@@ -15,7 +15,25 @@
       <includes>
         <include>*:wsit-rt:jar</include>
       </includes>
+      <unpackOptions>
+        <excludes>
+          <exclude>WEB-INF/**</exclude>
+        </excludes>
+      </unpackOptions>
     </dependencySet>
+    <dependencySet>
+      <outputDirectory>/wsdl</outputDirectory>
+      <useStrictFiltering>true</useStrictFiltering>
+      <unpack>true</unpack>
+      <includes>
+        <include>*:wsit-rt:jar</include>
+      </includes>
+      <unpackOptions>
+        <includes>
+          <include>WEB-INF/**</include>
+        </includes>
+      </unpackOptions>
+    </dependencySet>
   </dependencySets>
   
 </assembly>
\ No newline at end of file

Added: stack/metro/branches/tdiesler/trunk/modules/wsit/src/main/scripts/assembly-wsit-tools.xml
===================================================================
--- stack/metro/branches/tdiesler/trunk/modules/wsit/src/main/scripts/assembly-wsit-tools.xml	                        (rev 0)
+++ stack/metro/branches/tdiesler/trunk/modules/wsit/src/main/scripts/assembly-wsit-tools.xml	2008-04-29 14:11:21 UTC (rev 6751)
@@ -0,0 +1,30 @@
+<assembly 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/xsd/assembly-1.1.0-SNAPSHOT.xsd">
+  
+  <id>tools</id>
+  <formats>
+    <format>jar</format>
+  </formats>
+  <includeBaseDirectory>false</includeBaseDirectory>
+  
+  <dependencySets>
+    <dependencySet>
+      <outputDirectory>/</outputDirectory>
+      <useStrictFiltering>true</useStrictFiltering>
+      <unpack>true</unpack>
+      <includes>
+        <include>*:wsit-tools:jar</include>
+      </includes>
+    </dependencySet>
+  </dependencySets>
+  <fileSets>
+    <fileSet>
+      <outputDirectory>/</outputDirectory>
+      <directory>src/main/etc</directory>
+      <includes>
+        <include>META-INF/services/**</include>
+      </includes>
+    </fileSet>
+  </fileSets>
+  
+</assembly>
\ No newline at end of file


Property changes on: stack/metro/branches/tdiesler/trunk/modules/wsit/src/main/scripts/assembly-wsit-tools.xml
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF




More information about the jbossws-commits mailing list