Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 6 additions & 19 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -94,15 +94,8 @@ subprojects { project ->

dependencies {
testCompile "org.codehaus.groovy:groovy-test-junit5:$groovyVersion"
testCompile "org.spockframework:spock-core:$spockVersion", {
exclude group: 'junit', module: 'junit-dep'
exclude group: 'org.codehaus.groovy', module: 'groovy-all'
exclude group: 'org.hamcrest', module: 'hamcrest-core'
transitive = false
}
testCompile("org.spockframework:spock-core:$spockVersion") { transitive = false}
testCompile "org.junit.jupiter:junit-jupiter-api:5.6.0"
testCompile "org.junit.platform:junit-platform-runner:1.6.0"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.6.0"
}

apply from: "${rootProject.projectDir}/gradle/testVerbose.gradle"
Expand Down Expand Up @@ -154,14 +147,15 @@ subprojects { project ->

configurations {
documentation
}

all {
// Uncomment below code to force refresh dependencies
/*configurations.all {
resolutionStrategy {
cacheDynamicVersionsFor 0, 'hours'
cacheChangingModulesFor 0, 'hours'
}
}
}
}*/

if(isPluginProject) {
group "org.grails.plugins"
Expand Down Expand Up @@ -204,15 +198,8 @@ subprojects { project ->
documentation 'info.picocli:picocli:3.8.2'

testCompile "org.codehaus.groovy:groovy-test-junit5:$groovyVersion"
testCompile "org.spockframework:spock-core:$spockVersion", {
exclude group: 'junit', module: 'junit-dep'
exclude group: 'org.codehaus.groovy', module: 'groovy-all'
exclude group: 'org.hamcrest', module: 'hamcrest-core'
transitive = false
}
testCompile("org.spockframework:spock-core:$spockVersion") { transitive = false}
testCompile "org.junit.jupiter:junit-jupiter-api:5.6.0"
testCompile "org.junit.platform:junit-platform-runner:1.6.0"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.6.0"
documentation "info.picocli:picocli:$picocliVersion"
}

Expand Down