Skip to content

Commit

Permalink
Migrate to com.netflix.nebula.plugin-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
rpalcolea committed Oct 11, 2022
1 parent 31a4c68 commit b3f9155
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -104,21 +104,31 @@ afterEvaluate {
}
}

pluginBundle {
website = 'https://github.com/nebula-plugins/gradle-lint-plugin'
vcsUrl = 'https://github.com/nebula-plugins/gradle-lint-plugin.git'
description = 'Pluggable and configurable linter tool for identifying and reporting on patterns of misuse or deprecations in Gradle scripts'

gradlePlugin {
plugins {
gradeLint {
id = 'nebula.lint'
displayName = 'Nebula Lint plugin'
description = 'Pluggable and configurable linter tool for identifying and reporting on patterns of misuse or deprecations in Gradle scripts'
tags = ['nebula', 'lint']
implementationClass = 'com.netflix.nebula.lint.plugin.GradleLintPlugin'
}
gradeLint {
id = 'nebula.configEnvironment'
displayName = 'Nebula Config Environment plugin'
description = 'Pluggable and configurable linter tool for identifying and reporting on patterns of misuse or deprecations in Gradle scripts'
implementationClass = 'com.netflix.nebula.config.plugin.ConfigurationEnvironmentPlugin'
}
}
}


pluginBundle {
website = 'https://github.com/nebula-plugins/gradle-lint-plugin'
vcsUrl = 'https://github.com/nebula-plugins/gradle-lint-plugin.git'
tags = ['nebula', 'lint']
}


// Relocate jgit dependency not available in Maven Central
// Replaces the main artifact by removing the classifier for the shadow jar, and replacing jar with shadowJar
// Relocated dependencies are removed from the generated pom
Expand Down

0 comments on commit b3f9155

Please sign in to comment.