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/02/04 22:14:31 UTC

[tapestry-5] branch latest-java-tests updated (499a228 -> 8e7aa8d)

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

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


    from 499a228  TAP5-2700: changes to run tests on Java 17
     new 73218b4  TAP5-2699: fixing tapestry-test Gradle configuration
     new 8e7aa8d  TAP5-2702: Upgrade to Groovy 3 and Spock 2 to support Java 17

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 build.gradle               | 2 +-
 tapestry-test/build.gradle | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

[tapestry-5] 01/02: TAP5-2699: fixing tapestry-test Gradle configuration

Posted by th...@apache.org.
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

commit 73218b47cf33bd23a0f38792adb78db091dcf8c3
Author: Thiago H. de Paula Figueiredo <th...@arsmachina.com.br>
AuthorDate: Fri Feb 4 19:01:59 2022 -0300

    TAP5-2699: fixing tapestry-test Gradle configuration
    
    so projects depending on it can run tests with Selenium
---
 tapestry-test/build.gradle | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tapestry-test/build.gradle b/tapestry-test/build.gradle
index 2efff47..95cdb58 100644
--- a/tapestry-test/build.gradle
+++ b/tapestry-test/build.gradle
@@ -5,14 +5,14 @@ dependencies {
   api project(":tapestry-test-data")
   api project(":tapestry-runner")
 
-  implementation ("io.github.bonigarcia:webdrivermanager:2.2.4")
+  api ("io.github.bonigarcia:webdrivermanager:2.2.4")
 
-  implementation "org.seleniumhq.selenium:selenium-leg-rc:${versions.selenium}", {
+  api "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"
   }
-  implementation "org.seleniumhq.selenium:selenium-support:${versions.selenium}"
+  api "org.seleniumhq.selenium:selenium-support:${versions.selenium}"
 
   api "org.testng:testng:${versions.testng}"
   api "org.easymock:easymock:${versions.easymock}"

[tapestry-5] 02/02: TAP5-2702: Upgrade to Groovy 3 and Spock 2 to support Java 17

Posted by th...@apache.org.
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

commit 8e7aa8dc31204ff3b8ebc74cf252c703ff701fa5
Author: Thiago H. de Paula Figueiredo <th...@arsmachina.com.br>
AuthorDate: Fri Feb 4 19:11:43 2022 -0300

    TAP5-2702: Upgrade to Groovy 3 and Spock 2 to support Java 17
    
    Also JaCoCo 0.8.7
---
 build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.gradle b/build.gradle
index ad4e9af..431ce3d 100755
--- a/build.gradle
+++ b/build.gradle
@@ -14,7 +14,7 @@ project.ext.versions = [
     testng: "6.8.21",
     easymock: "3.3.1",
     servletapi: "3.0.1",
-    spock: "1.3-groovy-2.5",
+    spock: "2.0-groovy-3.0",
     hibernate: "5.4.32.Final",
     slf4j: "1.7.25",
     geb: "2.0",