Merge pull request #266 from onlydevelop/update-gradle-spock

Upgraded gradle and spock
This commit is contained in:
Emily Bache 2021-10-04 13:24:29 +02:00 committed by GitHub
commit 239e8317d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 3 deletions

View File

@ -1,9 +1,21 @@
apply plugin: 'groovy' apply plugin: "groovy"
repositories { repositories {
mavenCentral() mavenCentral()
} }
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
dependencies { dependencies {
testCompile 'org.spockframework:spock-core:1.0-groovy-2.4' implementation 'org.codehaus.groovy:groovy:3.0.8'
testImplementation platform('org.spockframework:spock-bom:2.0-groovy-3.0')
testImplementation 'org.spockframework:spock-core'
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
} }

View File

@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.9-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip