You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rave.apache.org by ja...@apache.org on 2011/07/06 13:02:09 UTC

svn commit: r1143337 - in /incubator/rave/trunk: pom.xml rave-portal/pom.xml rave-shindig/pom.xml

Author: jasha
Date: Wed Jul  6 11:02:09 2011
New Revision: 1143337

URL: http://svn.apache.org/viewvc?rev=1143337&view=rev
Log:
RAVE-82 centralize h2 database dependency management

Modified:
    incubator/rave/trunk/pom.xml
    incubator/rave/trunk/rave-portal/pom.xml
    incubator/rave/trunk/rave-shindig/pom.xml

Modified: incubator/rave/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/rave/trunk/pom.xml?rev=1143337&r1=1143336&r2=1143337&view=diff
==============================================================================
--- incubator/rave/trunk/pom.xml (original)
+++ incubator/rave/trunk/pom.xml Wed Jul  6 11:02:09 2011
@@ -56,11 +56,12 @@
         <commons-lang.version>2.6</commons-lang.version>
         <icu4j.version>4.6.1</icu4j.version>
         <easymock.version>3.0</easymock.version>
+        <com.h2database.version>1.3.154</com.h2database.version>
         <openjpa.version>2.1.0</openjpa.version>
         <org.openid4java.version>0.9.6</org.openid4java.version>
         <jersey-server.version>1.6</jersey-server.version>
         <jersey-spring.version>1.0</jersey-spring.version>
-        
+
         <!-- Force maven-filesync-plugin rewrite the Eclipse FileSync plugin configuration with
             $mvn filesync:generate -Dmaven.filesync.override=true -->
         <maven.filesync.override>false</maven.filesync.override>
@@ -155,6 +156,11 @@
                 <artifactId>openjpa</artifactId>
                 <version>${openjpa.version}</version>
             </dependency>
+            <dependency>
+                <groupId>com.h2database</groupId>
+                <artifactId>h2</artifactId>
+                <version>${com.h2database.version}</version>
+            </dependency>
 
             <dependency>
                 <groupId>com.sun.jersey</groupId>

Modified: incubator/rave/trunk/rave-portal/pom.xml
URL: http://svn.apache.org/viewvc/incubator/rave/trunk/rave-portal/pom.xml?rev=1143337&r1=1143336&r2=1143337&view=diff
==============================================================================
--- incubator/rave/trunk/rave-portal/pom.xml (original)
+++ incubator/rave/trunk/rave-portal/pom.xml Wed Jul  6 11:02:09 2011
@@ -45,7 +45,6 @@
   override on command line with -Dcargo.debug.suspend=y -->
         <cargo.debug.suspend>n</cargo.debug.suspend>
 
-        <com.h2database.version>1.3.154</com.h2database.version>
     </properties>
 
     <dependencies>
@@ -124,7 +123,6 @@
         <dependency>
             <groupId>com.h2database</groupId>
             <artifactId>h2</artifactId>
-            <version>${com.h2database.version}</version>
         </dependency>
         
         <!-- JSTL -->

Modified: incubator/rave/trunk/rave-shindig/pom.xml
URL: http://svn.apache.org/viewvc/incubator/rave/trunk/rave-shindig/pom.xml?rev=1143337&r1=1143336&r2=1143337&view=diff
==============================================================================
--- incubator/rave/trunk/rave-shindig/pom.xml (original)
+++ incubator/rave/trunk/rave-shindig/pom.xml Wed Jul  6 11:02:09 2011
@@ -37,7 +37,6 @@
   <version>0.2-incubating-SNAPSHOT</version>
 
   <properties>
-    <com.h2database.version>1.3.154</com.h2database.version>
   </properties>
 
   <dependencies>
@@ -50,7 +49,6 @@
     <dependency>
       <groupId>com.h2database</groupId>
       <artifactId>h2</artifactId>
-      <version>${com.h2database.version}</version>
     </dependency>
 
     <dependency>