All Downloads are FREE. Search and download functionalities are using the official Maven repository.

name.remal.gradle_plugins.toolkit.build_logic.groovy.gradle Maven / Gradle / Ivy

There is a newer version: 0.64.11
Show newest version
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
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy