name.remal.gradle_plugins.toolkit.build_logic.groovy.gradle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of build-logic Show documentation
Show all versions of build-logic Show documentation
Remal Gradle plugins: toolkit: build-logic
allprojects {
pluginManager.withPlugin('groovy') {
tasks.withType(GroovyCompile).configureEach {
groovyOptions.with {
it.fork = false
it.parameters = true
it.javaAnnotationProcessing = true
it.configurationScript = project.file("${project.rootProjectDir}/compiler-config.groovy")
it.optimizationOptions['indy'] = false
}
}
}
}