File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,8 @@ gradlePlugin {
37
37
create(PluginInfo .name) {
38
38
id = PluginInfo .group
39
39
implementationClass = PluginInfo .implementationClass
40
+ displayName = PluginInfo .displayName
41
+ description = PluginInfo .description
40
42
}
41
43
}
42
44
}
@@ -49,7 +51,7 @@ pluginBundle {
49
51
50
52
(plugins) {
51
53
PluginInfo .name {
52
- displayName = " Secrets Gradle Plugin for Android "
54
+ displayName = PluginInfo .displayName
53
55
tags = listOf (" kotlin" , " android" )
54
56
}
55
57
}
@@ -97,15 +99,17 @@ publishing {
97
99
}
98
100
repositories {
99
101
maven(url = " build/repository" )
102
+ mavenLocal()
100
103
}
101
104
}
102
105
103
106
object PluginInfo {
104
107
const val artifactId = " com.google.android.libraries.mapsplatform.secrets-gradle-plugin.gradle.plugin"
105
108
const val description = " A Gradle plugin for providing secrets securely to an Android project."
109
+ const val displayName = " Secrets Gradle Plugin for Android"
106
110
const val group = " com.google.android.libraries.mapsplatform.secrets-gradle-plugin"
107
111
const val implementationClass = " com.google.android.libraries.mapsplatform.secrets_gradle_plugin.SecretsPlugin"
108
112
const val name = " secretsGradlePlugin"
109
113
const val url = " https://github.com/google/secrets-gradle-plugin"
110
- const val version = " 1.1 .0"
114
+ const val version = " 1.2 .0"
111
115
}
You can’t perform that action at this time.
0 commit comments