Skip to content

Commit 4a40065

Browse files
committed
chore: Version 1.2.0
1 parent de14558 commit 4a40065

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

secrets-gradle-plugin/build.gradle.kts

+6-2
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ gradlePlugin {
3737
create(PluginInfo.name) {
3838
id = PluginInfo.group
3939
implementationClass = PluginInfo.implementationClass
40+
displayName = PluginInfo.displayName
41+
description = PluginInfo.description
4042
}
4143
}
4244
}
@@ -49,7 +51,7 @@ pluginBundle {
4951

5052
(plugins) {
5153
PluginInfo.name {
52-
displayName = "Secrets Gradle Plugin for Android"
54+
displayName = PluginInfo.displayName
5355
tags = listOf("kotlin", "android")
5456
}
5557
}
@@ -97,15 +99,17 @@ publishing {
9799
}
98100
repositories {
99101
maven(url = "build/repository")
102+
mavenLocal()
100103
}
101104
}
102105

103106
object PluginInfo {
104107
const val artifactId = "com.google.android.libraries.mapsplatform.secrets-gradle-plugin.gradle.plugin"
105108
const val description = "A Gradle plugin for providing secrets securely to an Android project."
109+
const val displayName = "Secrets Gradle Plugin for Android"
106110
const val group = "com.google.android.libraries.mapsplatform.secrets-gradle-plugin"
107111
const val implementationClass = "com.google.android.libraries.mapsplatform.secrets_gradle_plugin.SecretsPlugin"
108112
const val name = "secretsGradlePlugin"
109113
const val url = "https://github.com/google/secrets-gradle-plugin"
110-
const val version = "1.1.0"
114+
const val version = "1.2.0"
111115
}

0 commit comments

Comments
 (0)