Skip to content

Commit d2c428e

Browse files
committed
set sdk version as property
1 parent 8a89d61 commit d2c428e

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ plugins {
1010
kotlin("multiplatform") version "1.4.31"
1111
}
1212

13+
val sdkVersion: String by project
1314
group = "aws.sdk.kotlin.crt"
14-
version = "0.1.0-SNAPSHOT"
15+
version = sdkVersion
1516
description = "Kotlin Multiplatform bindings for AWS SDK Common Runtime"
1617

1718
allprojects {

gradle.properties

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ kotlin.code.style=official
22
kotlin.mpp.enableGranularSourceSetsMetadata=true
33
# kotlin.native.ignoreDisabledTargets=true
44

5+
# aws-crt-kotlin
6+
sdkVersion=0.1.0
7+
58
# kotlin
69
kotlinVersion=1.4.31
710
coroutinesVersion=1.4.3
@@ -15,4 +18,4 @@ kotestVersion=4.4.1
1518
kotlinxCliVersion=0.3
1619

1720
# JVM
18-
crtJavaVersion=0.11.0
21+
crtJavaVersion=0.11.0

0 commit comments

Comments
 (0)