Add test for project-root-capture.init.gradle

This commit is contained in:
Daz DeBoer
2022-06-04 21:00:05 -06:00
parent ece69c52b2
commit e4ed35bcaf
9 changed files with 564 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
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')
}
test {
useJUnitPlatform()
}