You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by am...@apache.org on 2009/04/29 14:55:54 UTC

svn commit: r769777 - in /webservices/axis2/branches/java/1_5/modules/distribution: pom.xml src/main/assembly/bin-assembly.xml

Author: amilas
Date: Wed Apr 29 12:55:53 2009
New Revision: 769777

URL: http://svn.apache.org/viewvc?rev=769777&view=rev
Log:
this avoids the duplication entries of the axis2-kernel jar file. and also it moves the axis2 code specific jars adding to one place i.e to bin-assembly.xml

Modified:
    webservices/axis2/branches/java/1_5/modules/distribution/pom.xml
    webservices/axis2/branches/java/1_5/modules/distribution/src/main/assembly/bin-assembly.xml

Modified: webservices/axis2/branches/java/1_5/modules/distribution/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_5/modules/distribution/pom.xml?rev=769777&r1=769776&r2=769777&view=diff
==============================================================================
--- webservices/axis2/branches/java/1_5/modules/distribution/pom.xml (original)
+++ webservices/axis2/branches/java/1_5/modules/distribution/pom.xml Wed Apr 29 12:55:53 2009
@@ -222,16 +222,6 @@
             <groupId>commons-lang</groupId>
             <artifactId>commons-lang</artifactId>
         </dependency>
-        <dependency>
-            <groupId>org.apache.axis2</groupId>
-            <artifactId>axis2-transport-http</artifactId>
-            <version>${version}</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.axis2</groupId>
-            <artifactId>axis2-transport-local</artifactId>
-            <version>${version}</version>
-        </dependency>
     </dependencies>
     <distributionManagement>
         <repository>

Modified: webservices/axis2/branches/java/1_5/modules/distribution/src/main/assembly/bin-assembly.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_5/modules/distribution/src/main/assembly/bin-assembly.xml?rev=769777&r1=769776&r2=769777&view=diff
==============================================================================
--- webservices/axis2/branches/java/1_5/modules/distribution/src/main/assembly/bin-assembly.xml (original)
+++ webservices/axis2/branches/java/1_5/modules/distribution/src/main/assembly/bin-assembly.xml Wed Apr 29 12:55:53 2009
@@ -133,7 +133,7 @@
             <includes>
                 <include>axis2-kernel-${version}.jar</include>
             </includes>
-        </fileSet>
+        </fileSet> 
         <fileSet>
             <directory>../../modules/adb/target</directory>
             <outputDirectory>lib</outputDirectory>
@@ -269,13 +269,21 @@
             </includes>
         </fileSet>
         <fileSet>
-            <directory>../../modules/transports/target</directory>
+            <directory>../../modules/transport/http/target</directory>
             <outputDirectory>lib</outputDirectory>
             <includes>
-                <include>axis2-transports-${version}.jar</include>
+                <include>axis2-transport-http-${version}.jar</include>
             </includes>
         </fileSet>
         <fileSet>
+            <directory>../../modules/transport/local/target</directory>
+            <outputDirectory>lib</outputDirectory>
+            <includes>
+                <include>axis2-transport-local-${version}.jar</include>
+            </includes>
+        </fileSet>
+
+        <fileSet>
             <directory>../../legal</directory>
             <outputDirectory>lib</outputDirectory>
             <includes>