analyzer.3.14.source-code.gme-pluginconfigs.gradle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of analyzer Show documentation
Show all versions of analyzer Show documentation
A tool to work with ProjectNCL to manipulate Gradle builds.
/**
* 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 - 2025 Weber Informatics LLC | Privacy Policy