Rename 'test/test-init-script' to 'test/init-scripts'

This commit is contained in:
Daz DeBoer 2022-06-11 09:13:13 -06:00
parent 6125b490f2
commit a8d44c9749
No known key found for this signature in database
GPG key ID: DD6B9F0B06683D5D
10 changed files with 1 additions and 1 deletions

View file

@ -0,0 +1,29 @@
plugins {
id 'groovy'
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(8)
}
}
repositories {
mavenCentral()
}
dependencies {
testImplementation gradleTestKit()
testImplementation 'org.spockframework:spock-core:2.1-groovy-3.0'
testImplementation('org.spockframework:spock-junit4:2.1-groovy-3.0')
testImplementation ('io.ratpack:ratpack-groovy-test:1.9.0') {
exclude group: 'org.codehaus.groovy', module: 'groovy-all'
}
testImplementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-smile:2.13.3'
}
test {
useJUnitPlatform()
}