Skip to content

Commit

Permalink
Prepare for publishing plugin to gradle plugin portal
Browse files Browse the repository at this point in the history
- Add tags for gradle plugin config for better discoverability.
  • Loading branch information
sagar-viradiya committed Aug 19, 2023
1 parent 3f86013 commit 037fbad
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions auto-benchmark-plugin/plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,14 @@ tasks.test {
gradlePlugin {
website.set(property("WEBSITE").toString())
vcsUrl.set(property("VCS_URL").toString())
}

gradlePlugin {
plugins {
create(property("ID").toString()) {
id = property("ID").toString()
implementationClass = property("IMPLEMENTATION_CLASS").toString()
version = property("VERSION").toString()
description = property("DESCRIPTION").toString()
displayName = property("DISPLAY_NAME").toString()
tags.set(listOf("macro-benchmark", "android", "baseline profile"))
}
}
}

0 comments on commit 037fbad

Please sign in to comment.