You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2011/01/21 16:21:12 UTC

svn commit: r1061840 - in /activemq/activemq-apollo/trunk: apollo-website/src/documentation/user-manual.md pom.xml

Author: chirino
Date: Fri Jan 21 15:21:10 2011
New Revision: 1061840

URL: http://svn.apache.org/viewvc?rev=1061840&view=rev
Log:
Upgrade to released version of our dependencies and don't build cassandra and hawtdb store by default since they are still a bit unstable (also commented it out of the user manual).

Modified:
    activemq/activemq-apollo/trunk/apollo-website/src/documentation/user-manual.md
    activemq/activemq-apollo/trunk/pom.xml

Modified: activemq/activemq-apollo/trunk/apollo-website/src/documentation/user-manual.md
URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-website/src/documentation/user-manual.md?rev=1061840&r1=1061839&r2=1061840&view=diff
==============================================================================
--- activemq/activemq-apollo/trunk/apollo-website/src/documentation/user-manual.md (original)
+++ activemq/activemq-apollo/trunk/apollo-website/src/documentation/user-manual.md Fri Jan 21 15:21:10 2011
@@ -251,10 +251,13 @@ implementations currently supported are:
 * [JDBM2 Store](#JDBM2_Store) : is a file based message store implemented using the 
   [JDBM2](http://code.google.com/p/jdbm2/) library.
   This is the most stable implementation.
+
+<!-- 
 * [HawtDB Store](#HawtDB_Store) : is a file based message store implemented using the 
   [HawtDB](http://hawtdb.fusesource.org/) library.  This implementation
   has known bugs and not recommend to be used unless your good with a 
-  debugger.
+  debugger. 
+-->
 
 ###### BDB Store
 
@@ -328,7 +331,8 @@ A `jdbm2_store` element may be configure
 * `compact_interval` : how often the store is compacted in seconds.  If 
   this attribute is not set, it will default to 60 seconds. Set to -1 
   to disable compaction altogether.
-  
+
+<!--  
 ###### HawtDB Store
 
 The HawtDB store implementation is redistributable by apache so it can 
@@ -360,6 +364,8 @@ A `hawtdb_store` element may be configur
   that it will be invalidated shortly thereafter by another unit of work
   which would negate the operation.
 
+-->
+
 ### Security
 
 #### Using SSL/TLS

Modified: activemq/activemq-apollo/trunk/pom.xml
URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/pom.xml?rev=1061840&r1=1061839&r2=1061840&view=diff
==============================================================================
--- activemq/activemq-apollo/trunk/pom.xml (original)
+++ activemq/activemq-apollo/trunk/pom.xml Fri Jan 21 15:21:10 2011
@@ -42,7 +42,6 @@
     <!-- dependencies that track scala version changes -->
     <scala-version>2.8.1</scala-version>
     <scalatest-version>1.2</scalatest-version>
-    <cascal-version>1.3-SNAPSHOT</cascal-version>
     
     <activemq-version>5.4.1</activemq-version>
     <servicemix.kernel.version>1.1.0</servicemix.kernel.version>
@@ -97,11 +96,10 @@
     <xbean-version>3.4</xbean-version>
     <felix-version>1.0.0</felix-version>
 
-    <hawtdispatch-version>1.1-SNAPSHOT</hawtdispatch-version>
-    <hawtdb-version>1.6-SNAPSHOT</hawtdb-version>
-    <hawtbuf-version>1.3-SNAPSHOT</hawtbuf-version>
+    <hawtdispatch-version>1.1</hawtdispatch-version>
+    <hawtbuf-version>1.3</hawtbuf-version>
     
-    <jdbm-version>2.0.0-SNAPSHOT</jdbm-version>
+    <jdbm-version>2.0.0</jdbm-version>
     <bdb-version>4.1.6</bdb-version>
     <jasypt-version>1.6</jasypt-version>
 
@@ -122,6 +120,10 @@
     
     <!-- disable unique version timestamps in snapshots -->
     <uniqueVersion>false</uniqueVersion>
+    
+    <cascal-version>1.3-SNAPSHOT</cascal-version>
+    <hawtdb-version>1.6-SNAPSHOT</hawtdb-version>
+
   </properties>
 
   <prerequisites>
@@ -151,11 +153,9 @@
     <module>apollo-scala</module>
     <module>apollo-util</module>
     <module>apollo-transport</module>
-    <module>apollo-cassandra</module>
     <module>apollo-broker</module>
     <module>apollo-selector</module>
     <module>apollo-tcp</module>
-    <module>apollo-hawtdb</module>
     <module>apollo-bdb</module>
     <module>apollo-jdbm2</module>
     <module>apollo-dto</module>
@@ -485,6 +485,16 @@
   </reporting>
 
   <profiles>
+    
+    <!-- to build the unstable modules -->
+    <profile>
+      <id>unstable</id>
+      <modules>
+        <module>apollo-cassandra</module>
+        <module>apollo-hawtdb</module>
+      </modules>
+    </profile>
+    
     <!-- 
         Do a license check by running       : mvn -P license license:check  
         UPdate the license check by running : mvn -P license license:format