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

analyzer.3.17.source-code.gme-pluginconfigs.gradle Maven / Gradle / Ivy

There is a newer version: 3.18
Show newest version
/**
 * This file is injected at the end by the Gradle Manipulation Tool during the analysis phase
 *
 * It is being used for extra configuration for badly behaved plugins
 */

allprojects {
    if (!project.hasProperty("gmeAnalyse") && !project.getState().getExecuted()) {
        afterEvaluate { project ->
            // Make sure that if the dokka task has been configured on the build,
            // we further configure it to not use the network at all
            // 

            project.pluginManager.withPlugin("com.bmuschko.nexus") {
                project.ext.nexusUsername = ""
                project.ext.nexusPassword = ""
                nexus {
                    sign = false
                }
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy