You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2011/04/15 03:06:50 UTC

svn commit: r1092558 - /tapestry/tapestry5/trunk/tapestry-jpa/build.gradle

Author: hlship
Date: Fri Apr 15 01:06:49 2011
New Revision: 1092558

URL: http://svn.apache.org/viewvc?rev=1092558&view=rev
Log:
TAP5-116: Change dependencies to try to get the tests running

Modified:
    tapestry/tapestry5/trunk/tapestry-jpa/build.gradle

Modified: tapestry/tapestry5/trunk/tapestry-jpa/build.gradle
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-jpa/build.gradle?rev=1092558&r1=1092557&r2=1092558&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-jpa/build.gradle (original)
+++ tapestry/tapestry5/trunk/tapestry-jpa/build.gradle Fri Apr 15 01:06:49 2011
@@ -5,8 +5,10 @@ dependencies {
   compile "org.eclipse.persistence:javax.persistence:2.0.3"
   
   testCompile project(':tapestry-test')
-  testCompile "com.h2database:h2:1.2.145"
-  testCompile "org.eclipse.persistence:org.eclipse.persistence.jpa:2.2.0"
+  
+  testRuntime "com.h2database:h2:1.2.145"
+  testRuntime "org.eclipse.persistence:org.eclipse.persistence.jpa:2.2.0"
+  testRuntime "org.apache.tomcat:dbcp:6.0.32"   
   
 }