We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 217cf25 commit fdef0d9Copy full SHA for fdef0d9
1 file changed
src/main/groovy/nebula/plugin/plugin/NebulaPluginPlugin.groovy
@@ -78,7 +78,9 @@ class NebulaPluginPlugin implements Plugin<Project> {
78
ossPublishingExt.netflixOssRepository.set("gradle-plugins")
79
}
80
ArchRulesUtil.setupArchRules(project)
81
- project.getDependencies().add("archRules", "com.netflix.nebula:archrules-gradle-plugin-development:0.+");
+ if (project.name == "archrules-gradle-plugin-development") {
82
+ project.getDependencies().add("archRules", "com.netflix.nebula:archrules-gradle-plugin-development:0.+")
83
+ }
84
project.with {
85
PLUGIN_IDS.each { plugins.apply(it) }
86
boolean integTest = !project.hasProperty("nebula.integTest") ||
0 commit comments