Author: ruwan Date: Thu May 21 07:17:34 2009 New Revision: 36456 URL: http://wso2.org/svn/browse/wso2?view=rev&revision=36456
Log: fixing the versions for the M1 release branch Modified: branches/esb/java/2.1-M1/esb/INSTALL.txt branches/esb/java/2.1-M1/esb/README.txt branches/esb/java/2.1-M1/esb/modules/distribution/pom.xml branches/esb/java/2.1-M1/esb/modules/distribution/src/main/assembly/bin.xml branches/esb/java/2.1-M1/esb/modules/distribution/src/main/assembly/filter.properties branches/esb/java/2.1-M1/esb/modules/samples/pom.xml branches/esb/java/2.1-M1/esb/modules/styles/pom.xml branches/esb/java/2.1-M1/esb/modules/styles/src/main/resources/META-INF/product.xml branches/esb/java/2.1-M1/esb/pom.xml Modified: branches/esb/java/2.1-M1/esb/INSTALL.txt URL: http://wso2.org/svn/browse/wso2/branches/esb/java/2.1-M1/esb/INSTALL.txt?rev=36456&r1=36455&r2=36456&view=diff ============================================================================== --- branches/esb/java/2.1-M1/esb/INSTALL.txt (original) +++ branches/esb/java/2.1-M1/esb/INSTALL.txt Thu May 21 07:17:34 2009 @@ -1,6 +1,6 @@ -Installing WSO2 Enterprise Service Bus (ESB) 2.0 +Installing WSO2 Enterprise Service Bus (ESB) 2.1.0-M1 -WSO2 ESB 2.0 can be run either in standalone mode or as a webapp within a +WSO2 ESB 2.1.0-M1 can be run either in standalone mode or as a webapp within a servlet container. Standalone Mode @@ -47,7 +47,7 @@ 5. To compile and run the sample clients, an Ant version is required. Ant 1.7.0 version is recommended 6. To build WSO2 ESB from the Source distribution, it is necessary that you have - JDK 1.5.x version and Maven 2.0.6 or later + JDK 1.5.x version and Maven 2.1.0 or later For more details see http://wso2.org/wiki/display/carbon/System+Requirements @@ -56,6 +56,6 @@ ======================= ESB samples are available at CARBON_HOME/samples directory. The instructions to run sample are given in the samples guide in the WSO2 ESB Documentation - wso2esb-2.0-docs.zip + wso2esb-2.1.0-M1-docs.zip Modified: branches/esb/java/2.1-M1/esb/README.txt URL: http://wso2.org/svn/browse/wso2/branches/esb/java/2.1-M1/esb/README.txt?rev=36456&r1=36455&r2=36456&view=diff ============================================================================== --- branches/esb/java/2.1-M1/esb/README.txt (original) +++ branches/esb/java/2.1-M1/esb/README.txt Thu May 21 07:17:34 2009 @@ -1,7 +1,7 @@ -WSO2 ESB 2.0 +WSO2 ESB 2.1.0-M1 ================================= -Welcome to the WSO2 ESB 2.0 release +Welcome to the WSO2 ESB 2.1.0-M1 release WSO2 ESB is a lightweight and easy-to-use Open Source Enterprise Service Bus (ESB) available under the Apache Software License v2.0. WSO2 ESB allows @@ -40,7 +40,7 @@ connection pools 13. JMX monitoring support -New Features of the WSO2 ESB 2.0 +New Features of the WSO2 ESB 2.1.0-M1 ================================= 1. This ESB release is based on Carbon "Middleware a' la carte" which is an OSGi @@ -88,7 +88,7 @@ Installation & Running ================================= -1. Extract the wso2esb-2.0.zip and go to the extracted directory +1. Extract the wso2esb-2.1.0-M1.zip and go to the extracted directory 2. Run the wso2server.sh or wso2server.bat as appropriate 3. Point your favourite browser to @@ -105,7 +105,7 @@ 5. Samples configurations can be specified by passing the property -Desb.sample=${SAMPLE_NUMBER} -WSO2 ESB 2.0 distribution directory structure +WSO2 ESB 2.1.0-M1 distribution directory structure ============================================= CARBON_HOME @@ -124,7 +124,7 @@ |- INSTALL.txt <file> |- release-notes.html <file> - - bin + - bin Contains various scripts .sh & .bat scripts - conf @@ -170,7 +170,7 @@ This document will contain information on installing WSO2 ESB - release-notes.html - Release information for WSO2 ESB 2.0 + Release information for WSO2 ESB 2.1.0-M1 Training ================================= @@ -193,7 +193,7 @@ For more information on WSO2 ESB, visit the WSO2 Oxygen Tank (http://wso2.org) -Known issues of WSO2 ESB 2.0 +Known issues of WSO2 ESB 2.1.0-M1 ================================= * Mail transport does not support SSL Modified: branches/esb/java/2.1-M1/esb/modules/distribution/pom.xml URL: http://wso2.org/svn/browse/wso2/branches/esb/java/2.1-M1/esb/modules/distribution/pom.xml?rev=36456&r1=36455&r2=36456&view=diff ============================================================================== --- branches/esb/java/2.1-M1/esb/modules/distribution/pom.xml (original) +++ branches/esb/java/2.1-M1/esb/modules/distribution/pom.xml Thu May 21 07:17:34 2009 @@ -24,12 +24,13 @@ <parent> <groupId>org.wso2.esb</groupId> <artifactId>esb-parent</artifactId> - <version>2.1.0.SNAPSHOT</version> + <version>2.1.0.M1</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>wso2esb</artifactId> <packaging>pom</packaging> + <version>2.1.0-M1</version> <name>WSO2 ESB Distribution</name> <url>http://wso2.org/projects/esb/java</url> <description>WSO2 Enterprise Service Bus Distribution</description> @@ -48,12 +49,12 @@ <dependency> <groupId>org.wso2.esb</groupId> <artifactId>org.wso2.esb.styles</artifactId> - <version>${pom.version}</version> + <version>${esb.version}</version> </dependency> <dependency> <groupId>org.wso2.esb</groupId> <artifactId>org.wso2.esb.samples</artifactId> - <version>${pom.version}</version> + <version>${esb.version}</version> </dependency> <!-- Synapse dependencies --> Modified: branches/esb/java/2.1-M1/esb/modules/distribution/src/main/assembly/bin.xml URL: http://wso2.org/svn/browse/wso2/branches/esb/java/2.1-M1/esb/modules/distribution/src/main/assembly/bin.xml?rev=36456&r1=36455&r2=36456&view=diff ============================================================================== --- branches/esb/java/2.1-M1/esb/modules/distribution/src/main/assembly/bin.xml (original) +++ branches/esb/java/2.1-M1/esb/modules/distribution/src/main/assembly/bin.xml Thu May 21 07:17:34 2009 @@ -13,6 +13,7 @@ <exclude>**/conf/axis2.xml</exclude> <exclude>**/conf/synapse.xml</exclude> <exclude>**/conf/wrapper.conf</exclude> + <exclude>**/conf/cipher-text.properties</exclude> <exclude>**/log4j.properties</exclude> <exclude>**/native/*</exclude> <exclude>**/services/sample01.aar</exclude> Modified: branches/esb/java/2.1-M1/esb/modules/distribution/src/main/assembly/filter.properties URL: http://wso2.org/svn/browse/wso2/branches/esb/java/2.1-M1/esb/modules/distribution/src/main/assembly/filter.properties?rev=36456&r1=36455&r2=36456&view=diff ============================================================================== --- branches/esb/java/2.1-M1/esb/modules/distribution/src/main/assembly/filter.properties (original) +++ branches/esb/java/2.1-M1/esb/modules/distribution/src/main/assembly/filter.properties Thu May 21 07:17:34 2009 @@ -1,5 +1,5 @@ product.name=WSO2 ESB -product.version=2.0 +product.version=2.1.0-M1 -carbon.version=1.6.0.SNAPSHOT -esb.version=2.1.0.SNAPSHOT \ No newline at end of file +carbon.version=2.0.0.M1 +esb.version=2.1.0-M1 \ No newline at end of file Modified: branches/esb/java/2.1-M1/esb/modules/samples/pom.xml URL: http://wso2.org/svn/browse/wso2/branches/esb/java/2.1-M1/esb/modules/samples/pom.xml?rev=36456&r1=36455&r2=36456&view=diff ============================================================================== --- branches/esb/java/2.1-M1/esb/modules/samples/pom.xml (original) +++ branches/esb/java/2.1-M1/esb/modules/samples/pom.xml Thu May 21 07:17:34 2009 @@ -24,7 +24,7 @@ <parent> <groupId>org.wso2.esb</groupId> <artifactId>esb-parent</artifactId> - <version>2.1.0.SNAPSHOT</version> + <version>2.1.0.M1</version> </parent> <modelVersion>4.0.0</modelVersion> Modified: branches/esb/java/2.1-M1/esb/modules/styles/pom.xml URL: http://wso2.org/svn/browse/wso2/branches/esb/java/2.1-M1/esb/modules/styles/pom.xml?rev=36456&r1=36455&r2=36456&view=diff ============================================================================== --- branches/esb/java/2.1-M1/esb/modules/styles/pom.xml (original) +++ branches/esb/java/2.1-M1/esb/modules/styles/pom.xml Thu May 21 07:17:34 2009 @@ -25,7 +25,7 @@ <parent> <groupId>org.wso2.esb</groupId> <artifactId>esb-parent</artifactId> - <version>2.1.0.SNAPSHOT</version> + <version>2.1.0.M1</version> </parent> <modelVersion>4.0.0</modelVersion> Modified: branches/esb/java/2.1-M1/esb/modules/styles/src/main/resources/META-INF/product.xml URL: http://wso2.org/svn/browse/wso2/branches/esb/java/2.1-M1/esb/modules/styles/src/main/resources/META-INF/product.xml?rev=36456&r1=36455&r2=36456&view=diff ============================================================================== --- branches/esb/java/2.1-M1/esb/modules/styles/src/main/resources/META-INF/product.xml (original) +++ branches/esb/java/2.1-M1/esb/modules/styles/src/main/resources/META-INF/product.xml Thu May 21 07:17:34 2009 @@ -1,7 +1,7 @@ <product xmlns="http://products.wso2.org/carbon"> <properties> <property name="userforum">http://wso2.org/forum/187</property> - <property name="userguide">http://wso2.org/project/esb/java/${pom.version}/docs/index.html</property> + <property name="userguide">http://wso2.org/project/esb/java/${esb.product.version}/docs/index.html</property> <property name="mailinglist">http://wso2.org/mail</property> <property name="issuetracker">https://wso2.org/jira/browse/ESBJAVA</property> </properties> Modified: branches/esb/java/2.1-M1/esb/pom.xml URL: http://wso2.org/svn/browse/wso2/branches/esb/java/2.1-M1/esb/pom.xml?rev=36456&r1=36455&r2=36456&view=diff ============================================================================== --- branches/esb/java/2.1-M1/esb/pom.xml (original) +++ branches/esb/java/2.1-M1/esb/pom.xml Thu May 21 07:17:34 2009 @@ -24,7 +24,7 @@ <groupId>org.wso2.esb</groupId> <artifactId>esb-parent</artifactId> <packaging>pom</packaging> - <version>2.1.0.SNAPSHOT</version> + <version>2.1.0.M1</version> <name>WSO2 ESB</name> <url>http://wso2.org/projects/esb/java</url> <description>WSO2 Enterprise Service Bus</description> @@ -148,9 +148,10 @@ <commons.logging.version>1.1</commons.logging.version> <opencsv.version>1.8</opencsv.version> <poi.version>3.0-FINAL</poi.version> - <carbon.version>1.6.0.SNAPSHOT</carbon.version> + <carbon.version>2.0.0.M1</carbon.version> <synapse.version>1.3.0.wso2v1</synapse.version> - <esb.version>SNAPSHOT</esb.version> + <esb.version>2.1.0.M1</esb.version> + <esb.product.version>2.1.0-M1</esb.product.version> </properties> </project> _______________________________________________ Esb-java-dev mailing list [email protected] https://wso2.org/cgi-bin/mailman/listinfo/esb-java-dev
