Skip to content

Commit

Permalink
add plugin tags
Browse files Browse the repository at this point in the history
  • Loading branch information
RBusarow committed Jul 24, 2021
1 parent d59a956 commit 0bff043
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions modulecheck-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -50,24 +50,24 @@ dependencies {
gradlePlugin {
plugins {
create("moduleCheck") {
id = PluginCoordinates.ID
group = PluginCoordinates.GROUP
implementationClass = PluginCoordinates.IMPLEMENTATION_CLASS
id = "com.rickbusarow.module-check"
group = "com.rickbusarow.modulecheck"
implementationClass = "modulecheck.gradle.ModuleCheckPlugin"
version = libs.versions.versionName.get()
}
}
}

// Configuration Block for the Plugin Marker artifact on Plugin Central
pluginBundle {
website = PluginBundle.WEBSITE
vcsUrl = PluginBundle.VCS
description = PluginBundle.DESCRIPTION
tags = PluginBundle.TAGS
website = "https://github.com/RBusarow/ModuleCheck"
vcsUrl = "https://github.com/RBusarow/ModuleCheck"
description = "Fast dependency graph validation for gradle"
tags = listOf("kotlin", "dependencies", "android", "gradle-plugin", "kotlin-compiler-plugin")

plugins {
getByName("moduleCheck") {
displayName = PluginBundle.DISPLAY_NAME
displayName = "Fast dependency graph validation for gradle"
}
}
}
Expand Down

0 comments on commit 0bff043

Please sign in to comment.