Skip to content

Commit c85e4b8

Browse files
Merge pull request #1256 from ie3-institute/dependabot/gradle/dev/org.junit.jupiter-junit-jupiter-5.12.0
Bump org.junit.jupiter:junit-jupiter from 5.11.4 to 5.12.0
2 parents 92603b7 + f32d427 commit c85e4b8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ ext {
1919
javaVersion = JavaVersion.VERSION_17
2020
groovyVersion = "4.0"
2121
groovyBinaryVersion = "4.0.25"
22+
23+
junitVersion = '1.12.0'
2224
testcontainersVersion = '1.20.5'
2325

2426
scriptsLocation = 'gradle' + File.separator + 'scripts' + File.separator //location of script plugins
@@ -74,7 +76,8 @@ dependencies {
7476
// testing
7577
testImplementation "org.apache.groovy:groovy:$groovyBinaryVersion"
7678

77-
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.4'
79+
testImplementation "org.junit.platform:junit-platform-launcher:$junitVersion"
80+
testImplementation "org.junit.jupiter:junit-jupiter:$junitVersion"
7881
testImplementation "org.spockframework:spock-core:2.3-groovy-$groovyVersion"
7982
testImplementation 'org.objenesis:objenesis:3.4' // Mock creation with constructor parameters
8083
testImplementation 'net.bytebuddy:byte-buddy:1.17.1' // Mocks of classes

0 commit comments

Comments
 (0)