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 bb463641a Adding JUnit Jupiter dependency so Groovy tests can be run
bb463641a is described below
commit bb463641a95f9754cecc231a6649fb354825463d
Author: Thiago H. de Paula Figueiredo <[email protected]>
AuthorDate: Mon Jun 6 23:18:18 2022 -0300
Adding JUnit Jupiter dependency so Groovy tests can be run
in Eclipse
---
build.gradle | 3 ++-
tapestry-core/build.gradle | 2 ++
tapestry-ioc/build.gradle | 4 +++-
3 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/build.gradle b/build.gradle
index 8ed9d2082..0992245f8 100755
--- a/build.gradle
+++ b/build.gradle
@@ -21,7 +21,8 @@ project.ext.versions = [
geb: "2.0",
selenium: "3.141.59",
jackson: "2.13.1",
- jsonschemaGenerator: "4.20.0"
+ jsonschemaGenerator: "4.20.0",
+ junitJupiter: "5.8.2"
]
ext.continuousIntegrationBuild = Boolean.getBoolean("ci")
diff --git a/tapestry-core/build.gradle b/tapestry-core/build.gradle
index 07b5b4805..f597df824 100644
--- a/tapestry-core/build.gradle
+++ b/tapestry-core/build.gradle
@@ -29,6 +29,8 @@ dependencies {
provided "javax.servlet:javax.servlet-api:${versions.servletapi}"
implementation "commons-codec:commons-codec:1.10"
+
+ testImplementation
"org.junit.jupiter:junit-jupiter:${versions.junitJupiter}"
testRuntimeOnly "org.hsqldb:hsqldb:1.8.0.10"
diff --git a/tapestry-ioc/build.gradle b/tapestry-ioc/build.gradle
index c17fee3fe..151886d8f 100644
--- a/tapestry-ioc/build.gradle
+++ b/tapestry-ioc/build.gradle
@@ -21,7 +21,9 @@ dependencies {
testImplementation "org.apache.commons:commons-lang3:3.4"
testImplementation "org.hibernate:hibernate-core:5.2.10.Final"
- testRuntimeOnly "org.hsqldb:hsqldb:2.2.8"
+ testRuntimeOnly "org.hsqldb:hsqldb:2.2.8"
+
+ testImplementation
"org.junit.jupiter:junit-jupiter:${versions.junitJupiter}"
provided "org.testng:testng:${versions.testng}", { transitive = false }
}