Files
architectury-loom/bootstrap/build.gradle
modmuss50 d7001e9a3d Don't use java toolchain for bootstrap project.
Reverts an accidental change from fff4afe405
2022-06-19 13:26:24 +01:00

30 lines
461 B
Groovy

plugins {
id 'java'
id 'groovy'
}
sourceCompatibility = 8
targetCompatibility = 8
tasks.withType(JavaCompile).configureEach {
it.options.encoding = "UTF-8"
it.options.release = 8
}
repositories {
mavenCentral()
}
dependencies {
implementation gradleApi()
testImplementation(gradleTestKit())
testImplementation('org.spockframework:spock-core:2.1-groovy-3.0') {
exclude module: 'groovy-all'
}
}
test {
maxHeapSize = "4096m"
useJUnitPlatform()
}