From 037fbadc54a7a9fcaf3af229d0362e817a447ab3 Mon Sep 17 00:00:00 2001 From: Sagar Viradiya Date: Sun, 20 Aug 2023 00:37:53 +0200 Subject: [PATCH] Prepare for publishing plugin to gradle plugin portal - Add tags for gradle plugin config for better discoverability. --- auto-benchmark-plugin/plugin/build.gradle.kts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/auto-benchmark-plugin/plugin/build.gradle.kts b/auto-benchmark-plugin/plugin/build.gradle.kts index c258179..25f13ac 100644 --- a/auto-benchmark-plugin/plugin/build.gradle.kts +++ b/auto-benchmark-plugin/plugin/build.gradle.kts @@ -61,9 +61,6 @@ tasks.test { gradlePlugin { website.set(property("WEBSITE").toString()) vcsUrl.set(property("VCS_URL").toString()) -} - -gradlePlugin { plugins { create(property("ID").toString()) { id = property("ID").toString() @@ -71,6 +68,7 @@ gradlePlugin { version = property("VERSION").toString() description = property("DESCRIPTION").toString() displayName = property("DISPLAY_NAME").toString() + tags.set(listOf("macro-benchmark", "android", "baseline profile")) } } }