Author: saminda Date: Thu May 29 03:22:32 2008 New Revision: 17571 URL: http://wso2.org/svn/browse/wso2?view=rev&revision=17571
Log: updated to provide patches properly Modified: branches/wsas/java/2.3/wsas/modules/distribution/bin-release-assembly.xml branches/wsas/java/2.3/wsas/modules/distribution/pom.xml branches/wsas/java/2.3/wsas/pom.xml Modified: branches/wsas/java/2.3/wsas/modules/distribution/bin-release-assembly.xml URL: http://wso2.org/svn/browse/wso2/branches/wsas/java/2.3/wsas/modules/distribution/bin-release-assembly.xml?rev=17571&r1=17570&r2=17571&view=diff ============================================================================== --- branches/wsas/java/2.3/wsas/modules/distribution/bin-release-assembly.xml (original) +++ branches/wsas/java/2.3/wsas/modules/distribution/bin-release-assembly.xml Thu May 29 03:22:32 2008 @@ -261,5 +261,12 @@ <include>xerces:resolver:jar</include> </includes> </dependencySet> + <dependencySet> + <outputDirectory>${dist.temp.assembly.bin.dir}/lib/patches</outputDirectory> + <includes> + <include>org.apache.axis2:axis2-kernel:jar</include> + <include>org.apache.axis2:axis2-codegen:jar</include> + </includes> + </dependencySet> </dependencySets> </assembly> Modified: branches/wsas/java/2.3/wsas/modules/distribution/pom.xml URL: http://wso2.org/svn/browse/wso2/branches/wsas/java/2.3/wsas/modules/distribution/pom.xml?rev=17571&r1=17570&r2=17571&view=diff ============================================================================== --- branches/wsas/java/2.3/wsas/modules/distribution/pom.xml (original) +++ branches/wsas/java/2.3/wsas/modules/distribution/pom.xml Thu May 29 03:22:32 2008 @@ -917,6 +917,30 @@ <version>${wsdlview.version}</version> <type>aar</type> </dependency> + + <!-- patches--> + + <dependency> + <groupId>org.apache.axis2</groupId> + <artifactId>axis2-kernel</artifactId> + <version>${axis2.patched.version}</version> + </dependency> + + <dependency> + <groupId>org.apache.axis2</groupId> + <artifactId>axis2-codegen</artifactId> + <version>${axis2.patched.version}</version> + <exclusions> + <exclusion> + <groupId>org.apache.axis2</groupId> + <artifactId>axis2-kernel</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.axis2</groupId> + <artifactId>axis2-adb</artifactId> + </exclusion> + </exclusions> + </dependency> </dependencies> </project> Modified: branches/wsas/java/2.3/wsas/pom.xml URL: http://wso2.org/svn/browse/wso2/branches/wsas/java/2.3/wsas/pom.xml?rev=17571&r1=17570&r2=17571&view=diff ============================================================================== --- branches/wsas/java/2.3/wsas/pom.xml (original) +++ branches/wsas/java/2.3/wsas/pom.xml Thu May 29 03:22:32 2008 @@ -1042,6 +1042,11 @@ <dependency> <groupId>org.apache.axis2</groupId> + <artifactId>axis2-clustering</artifactId> + </dependency> + + <dependency> + <groupId>org.apache.axis2</groupId> <artifactId>axis2-mtompolicy</artifactId> <exclusions> <exclusion> @@ -2070,8 +2075,11 @@ </distributionManagement> <properties> - <axis2.version>1.4.01</axis2.version> - <axis2.clustering.version>1.4.01</axis2.clustering.version> + <axis2.version>1.4</axis2.version> + <axis2.clustering.version>1.4</axis2.clustering.version> + + <!-- This will provide the patches that done to Axis2, by WSO2 --> + <axis2.patched.version>1.4.01</axis2.patched.version> <wso2wsas.version>${pom.version}</wso2wsas.version> <!-- Chane this according to the needs--> _______________________________________________ Wsas-java-dev mailing list [email protected] http://wso2.org/cgi-bin/mailman/listinfo/wsas-java-dev
