|
31 | 31 | ext."signing.keyId" = System.getenv("SIGNING_KEY") ?: project.hasProperty("signing.keyId") ? project.getProperty('signing.keyId') : null |
32 | 32 | ext."signing.password" = System.getenv("SIGNING_PASSPHRASE") ?: project.hasProperty("signing.password") ? project.getProperty('signing.password') : null |
33 | 33 | ext."signing.secretKeyRingFile" = project.hasProperty("signing.secretKeyRingFile") ? project.getProperty('signing.secretKeyRingFile') : null |
| 34 | +ext['junit-jupiter.version'] = junitJupiterVersion |
34 | 35 |
|
35 | 36 | if (isReleaseVersion) { |
36 | 37 | apply plugin: 'maven-publish' |
@@ -113,9 +114,9 @@ subprojects { project -> |
113 | 114 | testImplementation "io.projectreactor:reactor-test:3.4.9" |
114 | 115 | testImplementation "org.codehaus.groovy:groovy-test-junit5:$groovyVersion" |
115 | 116 | testImplementation("org.spockframework:spock-core:$spockVersion") { transitive = false} |
116 | | - testImplementation "org.junit.jupiter:junit-jupiter-api:5.7.2" |
| 117 | + testImplementation "org.junit.jupiter:junit-jupiter-api:$junitJupiterVersion" |
117 | 118 | testImplementation "org.junit.platform:junit-platform-runner:1.7.2" |
118 | | - testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.7.2" |
| 119 | + testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitJupiterVersion" |
119 | 120 | } |
120 | 121 |
|
121 | 122 | apply from: "${rootProject.projectDir}/gradle/testVerbose.gradle" |
@@ -219,9 +220,9 @@ subprojects { project -> |
219 | 220 | implementation "org.codehaus.groovy:groovy:$groovyVersion" |
220 | 221 | testImplementation "org.codehaus.groovy:groovy-test-junit5:$groovyVersion" |
221 | 222 | testImplementation("org.spockframework:spock-core:$spockVersion") { transitive = false} |
222 | | - testImplementation "org.junit.jupiter:junit-jupiter-api:5.7.0" |
| 223 | + testImplementation "org.junit.jupiter:junit-jupiter-api:$junitJupiterVersion" |
223 | 224 | testImplementation "org.junit.platform:junit-platform-runner:1.7.0" |
224 | | - testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.7.0" |
| 225 | + testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitJupiterVersion" |
225 | 226 | } |
226 | 227 |
|
227 | 228 | apply from: "${rootProject.projectDir}/gradle/testVerbose.gradle" |
|
0 commit comments