Skip to content

Commit 89bb917

Browse files
authored
fix: fix publishing properties (#72)
1 parent 943e55a commit 89bb917

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

aws-crt-kotlin/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
}
1111

1212
val sdkVersion: String by project
13-
group = "aws.sdk.kotlin.crt"
13+
group = properties["publishGroupName"] ?: error("missing publishGroupName")
1414
version = sdkVersion
1515
description = "Kotlin Multiplatform bindings for AWS SDK Common Runtime"
1616

gradle.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,6 @@ kotlinxCliVersion=0.3.2
1919

2020
# JVM
2121
crtJavaVersion=0.26.1
22+
23+
# publishing
24+
publishGroupName=aws.sdk.kotlin.crt

0 commit comments

Comments
 (0)