We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 943e55a commit 89bb917Copy full SHA for 89bb917
aws-crt-kotlin/build.gradle.kts
@@ -10,7 +10,7 @@ plugins {
10
}
11
12
val sdkVersion: String by project
13
-group = "aws.sdk.kotlin.crt"
+group = properties["publishGroupName"] ?: error("missing publishGroupName")
14
version = sdkVersion
15
description = "Kotlin Multiplatform bindings for AWS SDK Common Runtime"
16
gradle.properties
@@ -19,3 +19,6 @@ kotlinxCliVersion=0.3.2
19
20
# JVM
21
crtJavaVersion=0.26.1
22
+
23
+# publishing
24
+publishGroupName=aws.sdk.kotlin.crt
0 commit comments