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 2022/01/19 02:49:04 UTC

[tapestry-5] branch latest-java-tests updated: TAP5-2700: changes to run tests on Java 17

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

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


The following commit(s) were added to refs/heads/latest-java-tests by this push:
     new 499a228  TAP5-2700: changes to run tests on Java 17
499a228 is described below

commit 499a228f48d7eecf8014a7589ee871abe32ed5a5
Author: Thiago H. de Paula Figueiredo <th...@arsmachina.com.br>
AuthorDate: Tue Jan 18 23:48:53 2022 -0300

    TAP5-2700: changes to run tests on Java 17
---
 build.gradle                        | 2 +-
 tapestry-beanvalidator/build.gradle | 6 ++++++
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/build.gradle b/build.gradle
index b971ef7..ad4e9af 100755
--- a/build.gradle
+++ b/build.gradle
@@ -165,7 +165,7 @@ subprojects {
     apply plugin: "jacoco"
     
     jacoco {
-        toolVersion = "0.8.6"
+        toolVersion = "0.8.7"
     }
     
     sourceCompatibility = "1.8"
diff --git a/tapestry-beanvalidator/build.gradle b/tapestry-beanvalidator/build.gradle
index 4db1bba..9c22ede 100644
--- a/tapestry-beanvalidator/build.gradle
+++ b/tapestry-beanvalidator/build.gradle
@@ -9,6 +9,12 @@ dependencies {
   implementation "org.hibernate:hibernate-validator:4.3.2.Final"
 
   testImplementation project(':tapestry-test')
+  implementation "org.seleniumhq.selenium:selenium-leg-rc:${versions.selenium}", {
+      exclude group: "org.seleniumhq.selenium", module: "jetty-repacked"
+      exclude group: "org.testng", module: "testng"
+      exclude group: "javax.servlet", module: "javax.servlet-api"
+  }
+  
 }
 
 task compileCoffeeScript(type: CompileCoffeeScript) {