[jboss-cvs] JBossAS SVN: r69762 - projects/ejb3/trunk/core.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sun Feb 10 19:08:10 EST 2008


Author: ALRubinger
Date: 2008-02-10 19:08:10 -0500 (Sun, 10 Feb 2008)
New Revision: 69762

Modified:
   projects/ejb3/trunk/core/build-test.xml
   projects/ejb3/trunk/core/pom.xml
Log:
Added HSQL Libaries for TestSuite

Modified: projects/ejb3/trunk/core/build-test.xml
===================================================================
--- projects/ejb3/trunk/core/build-test.xml	2008-02-10 23:32:25 UTC (rev 69761)
+++ projects/ejb3/trunk/core/build-test.xml	2008-02-11 00:08:10 UTC (rev 69762)
@@ -94,6 +94,7 @@
   <property name="location.dependencies.lib" value="${location.dependencies}/lib"/>
   <property name="location.dependencies.lib.jboss-test:jboss-test" value="${location.dependencies.lib}/jboss-test.jar"/>
   <property name="location.dependencies.lib.junit:junit" value="${location.dependencies.lib}/junit.jar"/>
+  <property name="location.dependencies.lib.hsqldb:hsqldb" value="${location.dependencies.lib}/hsqldb.jar"/>
   <property name="location.client.lib" value="${jboss.dist}/client"/>
   <property name="location.client.lib.jbossall" value="${location.client.lib}/jbossall-client.jar"/>
     
@@ -3987,6 +3988,9 @@
            <!-- JUnit -->
            <pathelement path="${location.dependencies.lib.junit:junit}" />
            
+           <!-- HSQL DB -->
+           <pathelement path="${location.dependencies.lib.hsqldb:hsqldb}" />
+           
            <!-- Root of jndi.properties -->
            <pathelement location="${resources}/test"/>
            

Modified: projects/ejb3/trunk/core/pom.xml
===================================================================
--- projects/ejb3/trunk/core/pom.xml	2008-02-10 23:32:25 UTC (rev 69761)
+++ projects/ejb3/trunk/core/pom.xml	2008-02-11 00:08:10 UTC (rev 69762)
@@ -183,6 +183,11 @@
       <scope>compile</scope>
     </dependency>
     <dependency>
+      <groupId>hsqldb</groupId>
+      <artifactId>hsqldb</artifactId>
+      <version>1.8.0.7</version> <!-- Only used here, for Unit Tests -->
+    </dependency>
+    <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
       <scope>test</scope>




More information about the jboss-cvs-commits mailing list