You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by th...@apache.org on 2020/12/06 15:42:19 UTC

[tapestry-5] branch master updated: TAP5-2652: Upgrade EclipseLink in tapestry-jpa to 2.7.7

This is an automated email from the ASF dual-hosted git repository.

thiagohp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git


The following commit(s) were added to refs/heads/master by this push:
     new 6d85a06  TAP5-2652: Upgrade EclipseLink in tapestry-jpa to 2.7.7
6d85a06 is described below

commit 6d85a061beeb386e3416296c1a83e796d1571548
Author: Thiago H. de Paula Figueiredo <th...@arsmachina.com.br>
AuthorDate: Sun Dec 6 12:42:01 2020 -0300

    TAP5-2652: Upgrade EclipseLink in tapestry-jpa to 2.7.7
---
 tapestry-jpa/build.gradle | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/tapestry-jpa/build.gradle b/tapestry-jpa/build.gradle
index 275a084..40bfe9d 100644
--- a/tapestry-jpa/build.gradle
+++ b/tapestry-jpa/build.gradle
@@ -7,7 +7,7 @@ dependencies {
 
 
   testCompile project(':tapestry-test')
-  testCompile 'org.eclipse.persistence:eclipselink:2.6.2'
+  testCompile 'org.eclipse.persistence:eclipselink:2.7.7'
 
   testRuntime "com.h2database:h2:1.2.145"
   testRuntime "org.apache.tomcat:dbcp:6.0.32"
@@ -30,4 +30,12 @@ jar {
     manifest {
         attributes 'Tapestry-Module-Classes': 'org.apache.tapestry5.jpa.modules.JpaModule'
     }
-}
\ No newline at end of file
+}
+
+task runTestApp6(type:JavaExec) {
+    description 'Start app6 integration test app, useful when debugging failing integration tests'
+    main = 'org.apache.tapestry5.test.JettyRunner'
+    args "-d", "src/test/app6", "-p", "8080"
+    classpath += project.sourceSets.test.runtimeClasspath
+}
+  
\ No newline at end of file