File tree Expand file tree Collapse file tree 1 file changed +16
-6
lines changed Expand file tree Collapse file tree 1 file changed +16
-6
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments