[hibernate-commits] Hibernate SVN: r12925 - core/trunk/testsuite.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Mon Aug 13 16:04:20 EDT 2007


Author: steve.ebersole at jboss.com
Date: 2007-08-13 16:04:19 -0400 (Mon, 13 Aug 2007)
New Revision: 12925

Modified:
   core/trunk/testsuite/pom.xml
Log:
fixed logging dependencies

Modified: core/trunk/testsuite/pom.xml
===================================================================
--- core/trunk/testsuite/pom.xml	2007-08-12 13:55:13 UTC (rev 12924)
+++ core/trunk/testsuite/pom.xml	2007-08-13 20:04:19 UTC (rev 12925)
@@ -73,6 +73,21 @@
         </dependency>
         <!-- logging setup for the test suite -->
         <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+            <version>99.0-does-not-exist</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging-api</artifactId>
+            <version>99.0-does-not-exist</version>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>jcl104-over-slf4j</artifactId>
+            <version>1.4.2</version>
+        </dependency>
+        <dependency>
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-log4j12</artifactId>
             <version>1.4.2</version>
@@ -82,6 +97,12 @@
             <artifactId>log4j</artifactId>
             <version>1.2.14</version>
         </dependency>
+        <dependency>
+            <groupId>org.testng</groupId>
+            <artifactId>testng</artifactId>
+            <version>5.5</version>
+            <classifier>jdk15</classifier>
+        </dependency>
     </dependencies>
 
     <build>
@@ -101,6 +122,14 @@
 
         <plugins>
             <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>1.5</source>
+                    <target>1.5</target>
+                </configuration>
+              </plugin>
+            <plugin>
                 <groupId>org.jboss.maven.plugins</groupId>
                 <artifactId>maven-test-ext-plugin</artifactId>
                 <version>1.1.0</version>




More information about the hibernate-commits mailing list