[seam-commits] Seam SVN: r8154 - in branches/Seam_2_0: seam-gen and 1 other directory.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Sun May 11 22:02:41 EDT 2008


Author: jbalunas at redhat.com
Date: 2008-05-11 22:02:40 -0400 (Sun, 11 May 2008)
New Revision: 8154

Modified:
   branches/Seam_2_0/build/core.pom.xml
   branches/Seam_2_0/build/gen.pom.xml
   branches/Seam_2_0/build/root.pom.xml
   branches/Seam_2_0/seam-gen/build.xml
Log:
JBSEAM-2592, JBSEAM-2482, JBSEAM-2961 - these changes make concurrent.jar and hsqldb.jar part of seam's distribution by making them optional core dependencies.  Changes were also needed to make seam-gen use hsqldb.jar in its new location.    

Modified: branches/Seam_2_0/build/core.pom.xml
===================================================================
--- branches/Seam_2_0/build/core.pom.xml	2008-05-11 13:51:35 UTC (rev 8153)
+++ branches/Seam_2_0/build/core.pom.xml	2008-05-12 02:02:40 UTC (rev 8154)
@@ -288,6 +288,18 @@
       <optional>true</optional>
       <scope>runtime</scope>
     </dependency>
+    
+    <dependency>
+       <groupId>oswego-concurrent</groupId>
+       <artifactId>concurrent</artifactId>
+       <optional>true</optional>
+    </dependency>
+    
+    <dependency>
+       <groupId>hsqldb</groupId>
+       <artifactId>hsqldb</artifactId>
+       <optional>true</optional>
+    </dependency>
 
   </dependencies>
 

Modified: branches/Seam_2_0/build/gen.pom.xml
===================================================================
--- branches/Seam_2_0/build/gen.pom.xml	2008-05-11 13:51:35 UTC (rev 8153)
+++ branches/Seam_2_0/build/gen.pom.xml	2008-05-12 02:02:40 UTC (rev 8154)
@@ -34,15 +34,15 @@
       </dependency>
       
       <dependency>
-         <groupId>hsqldb</groupId>
-         <artifactId>hsqldb</artifactId>
-         <scope>runtime</scope>
-      </dependency>
-      
-      <dependency>
          <groupId>org.jboss.seam</groupId>
          <artifactId>jboss-seam</artifactId>
          <scope>runtime</scope>
+         <exclusions>
+            <exclusion>
+               <groupId>hsqldb</groupId>
+               <artifactId>hsqldb</artifactId>
+            </exclusion>
+         </exclusions>
       </dependency>
       
       <dependency>

Modified: branches/Seam_2_0/build/root.pom.xml
===================================================================
--- branches/Seam_2_0/build/root.pom.xml	2008-05-11 13:51:35 UTC (rev 8153)
+++ branches/Seam_2_0/build/root.pom.xml	2008-05-12 02:02:40 UTC (rev 8154)
@@ -833,6 +833,12 @@
       </dependency>
       
       <dependency>
+         <groupId>oswego-concurrent</groupId>
+         <artifactId>concurrent</artifactId>
+         <version>1.3.4</version>
+      </dependency>
+      
+      <dependency>
          <groupId>hsqldb</groupId>
          <artifactId>hsqldb</artifactId>
          <version>1.8.0.2</version>

Modified: branches/Seam_2_0/seam-gen/build.xml
===================================================================
--- branches/Seam_2_0/seam-gen/build.xml	2008-05-11 13:51:35 UTC (rev 8153)
+++ branches/Seam_2_0/seam-gen/build.xml	2008-05-12 02:02:40 UTC (rev 8154)
@@ -368,7 +368,7 @@
                    message="Enter the Hibernate dialect for your database [${hibernate.dialect.default}]" 
               defaultvalue="${hibernate.dialect.default}"/>
         
-        <property name="old.driver.jar" value="../lib/gen/hsqldb.jar"/>
+        <property name="old.driver.jar" value="../lib/hsqldb.jar"/>
         <input addproperty="driver.jar.new"
                    message="Enter the filesystem path to the JDBC driver jar [${old.driver.jar}]" 
               defaultvalue="${old.driver.jar}"/>




More information about the seam-commits mailing list