Skip to content

Commit b3f9155

Browse files
committed
Migrate to com.netflix.nebula.plugin-plugin
1 parent 31a4c68 commit b3f9155

File tree

1 file changed

+16
-6
lines changed

1 file changed

+16
-6
lines changed

build.gradle

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -104,21 +104,31 @@ afterEvaluate {
104104
}
105105
}
106106

107-
pluginBundle {
108-
website = 'https://github.com/nebula-plugins/gradle-lint-plugin'
109-
vcsUrl = 'https://github.com/nebula-plugins/gradle-lint-plugin.git'
110-
description = 'Pluggable and configurable linter tool for identifying and reporting on patterns of misuse or deprecations in Gradle scripts'
111-
107+
gradlePlugin {
112108
plugins {
113109
gradeLint {
114110
id = 'nebula.lint'
115111
displayName = 'Nebula Lint plugin'
116112
description = 'Pluggable and configurable linter tool for identifying and reporting on patterns of misuse or deprecations in Gradle scripts'
117-
tags = ['nebula', 'lint']
113+
implementationClass = 'com.netflix.nebula.lint.plugin.GradleLintPlugin'
114+
}
115+
gradeLint {
116+
id = 'nebula.configEnvironment'
117+
displayName = 'Nebula Config Environment plugin'
118+
description = 'Pluggable and configurable linter tool for identifying and reporting on patterns of misuse or deprecations in Gradle scripts'
119+
implementationClass = 'com.netflix.nebula.config.plugin.ConfigurationEnvironmentPlugin'
118120
}
119121
}
120122
}
121123

124+
125+
pluginBundle {
126+
website = 'https://github.com/nebula-plugins/gradle-lint-plugin'
127+
vcsUrl = 'https://github.com/nebula-plugins/gradle-lint-plugin.git'
128+
tags = ['nebula', 'lint']
129+
}
130+
131+
122132
// Relocate jgit dependency not available in Maven Central
123133
// Replaces the main artifact by removing the classifier for the shadow jar, and replacing jar with shadowJar
124134
// Relocated dependencies are removed from the generated pom

0 commit comments

Comments
 (0)