Author: supun Date: Mon Apr 20 21:34:28 2009 New Revision: 33792 URL: http://wso2.org/svn/browse/wso2?view=rev&revision=33792
Log: Adding a dependency to newly added services for class and command mediators Modified: trunk/esb/java/modules/distribution/pom.xml trunk/esb/java/modules/distribution/src/main/assembly/dist.xml Modified: trunk/esb/java/modules/distribution/pom.xml URL: http://wso2.org/svn/browse/wso2/trunk/esb/java/modules/distribution/pom.xml?rev=33792&r1=33791&r2=33792&view=diff ============================================================================== --- trunk/esb/java/modules/distribution/pom.xml (original) +++ trunk/esb/java/modules/distribution/pom.xml Mon Apr 20 21:34:28 2009 @@ -340,7 +340,13 @@ <groupId>org.wso2.carbon</groupId> <artifactId>org.wso2.carbon.mediator.clazz.ui</artifactId> <version>${carbon.version}</version> - </dependency> + </dependency> + + <dependency> + <groupId>org.wso2.carbon</groupId> + <artifactId>org.wso2.carbon.mediator.clazz.services</artifactId> + <version>${carbon.version}</version> + </dependency> <dependency> <groupId>org.wso2.carbon</groupId> @@ -472,7 +478,13 @@ <groupId>org.wso2.carbon</groupId> <artifactId>org.wso2.carbon.mediator.command.ui</artifactId> <version>${carbon.version}</version> - </dependency> + </dependency> + + <dependency> + <groupId>org.wso2.carbon</groupId> + <artifactId>org.wso2.carbon.mediator.command.services</artifactId> + <version>${carbon.version}</version> + </dependency> <dependency> <groupId>org.wso2.carbon</groupId> Modified: trunk/esb/java/modules/distribution/src/main/assembly/dist.xml URL: http://wso2.org/svn/browse/wso2/trunk/esb/java/modules/distribution/src/main/assembly/dist.xml?rev=33792&r1=33791&r2=33792&view=diff ============================================================================== --- trunk/esb/java/modules/distribution/src/main/assembly/dist.xml (original) +++ trunk/esb/java/modules/distribution/src/main/assembly/dist.xml Mon Apr 20 21:34:28 2009 @@ -41,7 +41,9 @@ <include>org.wso2.carbon:org.wso2.carbon.datasource:jar</include> <include>org.wso2.carbon:org.wso2.carbon.mediation.configadmin:jar</include> - + <include>org.wso2.carbon:org.wso2.carbon.mediator.command.services:jar</include> + <include>org.wso2.carbon:org.wso2.carbon.mediator.clazz.services:jar</include> + <include>org.wso2.carbon:org.wso2.carbon.mediation.tracer:jar</include> <include>org.wso2.carbon:org.wso2.carbon.mediation.statistics:jar</include> <include>org.wso2.carbon:org.wso2.carbon.rm:jar</include> _______________________________________________ Esb-java-dev mailing list [email protected] https://wso2.org/cgi-bin/mailman/listinfo/esb-java-dev
