Author: asankha
Date: Tue Jan  8 23:51:19 2008
New Revision: 12006

Log:

build a release for the ESB 1.6 as 1.6


Modified:
   branches/esb/java/1.6/commons/caching/modules/core/pom.xml
   branches/esb/java/1.6/commons/caching/modules/mar/pom.xml
   branches/esb/java/1.6/commons/caching/modules/samples/pom.xml
   branches/esb/java/1.6/commons/caching/pom.xml

Modified: branches/esb/java/1.6/commons/caching/modules/core/pom.xml
==============================================================================
--- branches/esb/java/1.6/commons/caching/modules/core/pom.xml  (original)
+++ branches/esb/java/1.6/commons/caching/modules/core/pom.xml  Tue Jan  8 
23:51:19 2008
@@ -6,13 +6,13 @@
     <parent>
         <groupId>org.wso2.caching</groupId>
         <artifactId>wso2caching</artifactId>
-        <version>SNAPSHOT</version>
+        <version>1.6</version>
     </parent>
 
     <modelVersion>4.0.0</modelVersion>
     <artifactId>wso2caching-core</artifactId>
     <packaging>jar</packaging>
-    <version>SNAPSHOT</version>
+    <version>1.6</version>
     <name>WSO2 Caching Module - Core</name>
 
     <build>

Modified: branches/esb/java/1.6/commons/caching/modules/mar/pom.xml
==============================================================================
--- branches/esb/java/1.6/commons/caching/modules/mar/pom.xml   (original)
+++ branches/esb/java/1.6/commons/caching/modules/mar/pom.xml   Tue Jan  8 
23:51:19 2008
@@ -6,13 +6,13 @@
     <parent>
         <groupId>org.wso2.caching</groupId>
         <artifactId>wso2caching</artifactId>
-        <version>SNAPSHOT</version>
+        <version>1.6</version>
     </parent>
 
     <modelVersion>4.0.0</modelVersion>
     <artifactId>wso2caching-mar</artifactId>
     <packaging>jar</packaging>
-    <version>SNAPSHOT</version>
+    <version>1.6</version>
     <name>WSO2 Caching module - Mar</name>
 
     <build>
@@ -83,7 +83,7 @@
         <dependency>
             <groupId>org.wso2.caching</groupId>
             <artifactId>wso2caching-core</artifactId>
-            <version>SNAPSHOT</version>
+            <version>1.6</version>
         </dependency>
     </dependencies>
 

Modified: branches/esb/java/1.6/commons/caching/modules/samples/pom.xml
==============================================================================
--- branches/esb/java/1.6/commons/caching/modules/samples/pom.xml       
(original)
+++ branches/esb/java/1.6/commons/caching/modules/samples/pom.xml       Tue Jan 
 8 23:51:19 2008
@@ -6,13 +6,13 @@
     <parent>
         <groupId>org.wso2.caching</groupId>
         <artifactId>wso2caching</artifactId>
-        <version>SNAPSHOT</version>
+        <version>1.6</version>
     </parent>
 
     <modelVersion>4.0.0</modelVersion>
     <artifactId>wso2caching-samples</artifactId>
     <packaging>jar</packaging>
-    <version>SNAPSHOT</version>
+    <version>1.6</version>
     <name>WSO2 Caching module - Samples</name>
 
 </project>

Modified: branches/esb/java/1.6/commons/caching/pom.xml
==============================================================================
--- branches/esb/java/1.6/commons/caching/pom.xml       (original)
+++ branches/esb/java/1.6/commons/caching/pom.xml       Tue Jan  8 23:51:19 2008
@@ -6,7 +6,7 @@
     <groupId>org.wso2.caching</groupId>
     <artifactId>wso2caching</artifactId>
     <packaging>pom</packaging>
-    <version>SNAPSHOT</version>
+    <version>1.6</version>
     <name>WSO2 Caching module</name>
     <url>http://www.wso2.org</url>
 
@@ -16,54 +16,64 @@
             <groupId>org.apache.axis2</groupId>
             <artifactId>axis2-kernel</artifactId>
             <version>${axis2.version}</version>
+                       <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.axis2</groupId>
             <artifactId>axis2-saaj</artifactId>
             <version>${axis2.version}</version>
+                       <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.axis2</groupId>
             <artifactId>axis2-clustering</artifactId>
-            <version>${axis2.version}</version>
+            <version>${axis2.clustering.version}</version>
+                       <scope>provided</scope>
         </dependency>
         <!-- AXIOM Dependencies -->
         <dependency>
             <groupId>org.apache.ws.commons.axiom</groupId>
             <artifactId>axiom-impl</artifactId>
             <version>${axiom.version}</version>
+                       <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.ws.commons.axiom</groupId>
             <artifactId>axiom-api</artifactId>
             <version>${axiom.version}</version>
+                       <scope>provided</scope>
         </dependency>
         <!-- Neethi jar for the policy processor -->
         <dependency>
             <groupId>org.apache.neethi</groupId>
             <artifactId>neethi</artifactId>
             <version>${neethi.version}</version>
+                       <scope>provided</scope>
         </dependency>
         <!-- Thrid party dependencies -->
         <dependency>
             <groupId>commons-logging</groupId>
             <artifactId>commons-logging</artifactId>
             <version>${commons.logging.version}</version>
+                       <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>xmlunit</groupId>
             <artifactId>xmlunit</artifactId>
             <version>${xmlunit.version}</version>
+                       <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>log4j</groupId>
             <artifactId>log4j</artifactId>
             <version>${log4j.version}</version>
+                       <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
             <version>${junit.version}</version>
+                       <scope>test</scope>
         </dependency>
     </dependencies>
 
@@ -156,9 +166,10 @@
     </modules>
 
     <properties>
-        <axis2.version>SNAPSHOT</axis2.version>
-        <wso2caching.version>SNAPSHOT</wso2caching.version>
-        <axiom.version>SNAPSHOT</axiom.version>
+        <axis2.version>1.3</axis2.version>
+               <axis2.clustering.version>SNAPSHOT</axis2.clustering.version>
+        <wso2caching.version>1.6</wso2caching.version>
+        <axiom.version>1.2.5</axiom.version>
         <neethi.version>2.0.2</neethi.version>
         <commons.logging.version>1.1</commons.logging.version>
         <junit.version>3.8.2</junit.version>

_______________________________________________
Esb-java-dev mailing list
Esb-java-dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/esb-java-dev

Reply via email to