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 <[email protected]> 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}"
