Skip to content

Commit f4d61cd

Browse files
committed
Fix plugin's tags
1 parent e80c25a commit f4d61cd

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

plugin-build/plugin/build.gradle.kts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,17 @@ gradlePlugin {
3333
version = property("VERSION").toString()
3434
description = property("DESCRIPTION").toString()
3535
displayName = property("DISPLAY_NAME").toString()
36-
tags.set(listOf("plugin", "gradle", "sample", "template"))
36+
tags.set(
37+
listOf(
38+
"gradle-plugin",
39+
"bitcode",
40+
"analysis-pipeline",
41+
"kotlin-native",
42+
"gradle-kotlin-dsl",
43+
"kotlin-native-plugin",
44+
"bitcode-generation"
45+
)
46+
)
3747
}
3848
}
3949
}

0 commit comments

Comments
 (0)