[jbossws-commits] JBossWS SVN: r9582 - in stack/native/trunk: src/main/scripts and 1 other directory.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Thu Mar 12 06:38:26 EDT 2009


Author: richard.opalka at jboss.com
Date: 2009-03-12 06:38:25 -0400 (Thu, 12 Mar 2009)
New Revision: 9582

Modified:
   stack/native/trunk/modules/management/pom.xml
   stack/native/trunk/src/main/scripts/assembly-bin-dist.xml
   stack/native/trunk/src/main/scripts/assembly-deploy-artifacts.xml
   stack/native/trunk/src/main/scripts/assembly-src-dist.xml
Log:
[JBWS-2573] fix

Modified: stack/native/trunk/modules/management/pom.xml
===================================================================
--- stack/native/trunk/modules/management/pom.xml	2009-03-12 10:13:53 UTC (rev 9581)
+++ stack/native/trunk/modules/management/pom.xml	2009-03-12 10:38:25 UTC (rev 9582)
@@ -15,35 +15,35 @@
 
   <dependencies>
     <!--
-      These runtime dependencies are picked up by the assembly-deploy-artifacts
-      descriptor. They have no real relevants to this module. 
+      These dependencies are picked up by the assembly-deploy-artifacts
+      descriptor. They have no real and relevant meaning for this module
     -->
     <dependency>
       <groupId>org.jboss.ws</groupId>
       <artifactId>jbossws-framework</artifactId>
-      <scope>runtime</scope>
+      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.jboss.ws</groupId>
       <artifactId>jbossws-framework</artifactId>
       <classifier>testsuite</classifier>
-      <scope>runtime</scope>
+      <scope>provided</scope>
       <type>zip</type>
     </dependency>
     <dependency>
       <groupId>org.jboss.ws</groupId>
       <artifactId>jbossws-jboss423</artifactId>
-      <scope>runtime</scope>
+      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.jboss.ws</groupId>
       <artifactId>jbossws-jboss500</artifactId>
-      <scope>runtime</scope>
+      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.jboss.ws</groupId>
       <artifactId>jbossws-jboss501</artifactId>
-      <scope>runtime</scope>
+      <scope>provided</scope>
     </dependency>
     <!-- [JBWS-2505] -->
     <!-- START -->
@@ -51,19 +51,19 @@
     <dependency>
       <groupId>org.jboss.ws</groupId>
       <artifactId>jbossws-jboss510x</artifactId>
-      <scope>runtime</scope>
+      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.jboss.ws</groupId>
       <artifactId>jbossws-jboss600x</artifactId>
-      <scope>runtime</scope>
+      <scope>provided</scope>
     </dependency>
     -->
     <!-- END -->
     <dependency>
       <groupId>org.jboss.jaxr</groupId>
       <artifactId>juddi-service</artifactId>
-      <scope>runtime</scope>
+      <scope>provided</scope>
       <type>sar</type>
     </dependency>
   </dependencies>
@@ -94,7 +94,6 @@
       <plugin>
          <artifactId>maven-war-plugin</artifactId>
          <configuration>
-           <warSourceExcludes>WEB-INF/lib/*.jar</warSourceExcludes>
            <webResources>
              <resource>
                <directory>src/main/webapp</directory>

Modified: stack/native/trunk/src/main/scripts/assembly-bin-dist.xml
===================================================================
--- stack/native/trunk/src/main/scripts/assembly-bin-dist.xml	2009-03-12 10:13:53 UTC (rev 9581)
+++ stack/native/trunk/src/main/scripts/assembly-bin-dist.xml	2009-03-12 10:38:25 UTC (rev 9582)
@@ -89,7 +89,7 @@
           <dependencySet>
             <outputDirectory>tests</outputDirectory>
             <useStrictFiltering>true</useStrictFiltering>
-            <scope>runtime</scope>
+            <scope>provided</scope>
             <unpack>true</unpack>
             <includes>
               <include>*:jbossws-framework:zip:testsuite</include>

Modified: stack/native/trunk/src/main/scripts/assembly-deploy-artifacts.xml
===================================================================
--- stack/native/trunk/src/main/scripts/assembly-deploy-artifacts.xml	2009-03-12 10:13:53 UTC (rev 9581)
+++ stack/native/trunk/src/main/scripts/assembly-deploy-artifacts.xml	2009-03-12 10:38:25 UTC (rev 9582)
@@ -78,7 +78,7 @@
             <outputDirectory>lib</outputDirectory>
             <outputFileNameMapping>${module.artifactId}.${module.extension}</outputFileNameMapping>
             <useStrictFiltering>true</useStrictFiltering>
-            <scope>runtime</scope>
+            <scope>provided</scope>
             <unpack>false</unpack>
             <includes>
               <include>org.jboss.ws:jbossws-framework:jar</include>
@@ -93,7 +93,7 @@
             <outputDirectory>lib</outputDirectory>
             <outputFileNameMapping>jbossws-jboss501.${module.extension}</outputFileNameMapping>
             <useStrictFiltering>true</useStrictFiltering>
-            <scope>runtime</scope>
+            <scope>provided</scope>
             <unpack>false</unpack>
             <includes>
               <include>org.jboss.ws:jbossws-jboss501:jar</include>
@@ -106,7 +106,7 @@
             <outputDirectory>lib</outputDirectory>
             <outputFileNameMapping>jbossws-jboss510.${module.extension}</outputFileNameMapping>
             <useStrictFiltering>true</useStrictFiltering>
-            <scope>runtime</scope>
+            <scope>provided</scope>
             <unpack>false</unpack>
             <includes>
               <include>org.jboss.ws:jbossws-jboss510x:jar</include>
@@ -116,7 +116,7 @@
             <outputDirectory>lib</outputDirectory>
             <outputFileNameMapping>jbossws-jboss600.${module.extension}</outputFileNameMapping>
             <useStrictFiltering>true</useStrictFiltering>
-            <scope>runtime</scope>
+            <scope>provided</scope>
             <unpack>false</unpack>
             <includes>
               <include>org.jboss.ws:jbossws-jboss600x:jar</include>

Modified: stack/native/trunk/src/main/scripts/assembly-src-dist.xml
===================================================================
--- stack/native/trunk/src/main/scripts/assembly-src-dist.xml	2009-03-12 10:13:53 UTC (rev 9581)
+++ stack/native/trunk/src/main/scripts/assembly-src-dist.xml	2009-03-12 10:38:25 UTC (rev 9582)
@@ -57,7 +57,7 @@
           <dependencySet>
             <outputDirectory>modules/testsuite/framework-tests/src/test</outputDirectory>
             <useStrictFiltering>true</useStrictFiltering>
-            <scope>runtime</scope>
+            <scope>provided</scope>
             <unpack>true</unpack>
             <includes>
               <include>*:jbossws-framework:zip:testsuite</include>




More information about the jbossws-commits mailing list