File tree 4 files changed +24
-8
lines changed
4 files changed +24
-8
lines changed Original file line number Diff line number Diff line change 2
2
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
3
* SPDX-License-Identifier: Apache-2.0.
4
4
*/
5
+
5
6
plugins {
6
- kotlin(" jvm" ) version " 1.5.0" apply false
7
+ kotlin(" jvm" ) version " 1.5.31" apply false
8
+ id(" org.jetbrains.dokka" )
7
9
}
8
10
9
11
allprojects {
10
12
repositories {
11
13
mavenLocal()
12
14
mavenCentral()
13
- jcenter()
14
15
}
15
16
}
16
17
Original file line number Diff line number Diff line change @@ -10,5 +10,6 @@ plugins {
10
10
}
11
11
12
12
repositories {
13
- jcenter()
13
+ mavenLocal()
14
+ mavenCentral()
14
15
}
Original file line number Diff line number Diff line change @@ -2,15 +2,18 @@ kotlin.code.style=official
2
2
3
3
# codegen
4
4
smithyVersion =1.13.1
5
+ smithyGradleVersion =0.5.3
5
6
6
7
smithySwiftVersion = 0.1.0
7
8
8
9
# kotlin
9
- kotlinVersion =1.5.0
10
+ kotlinVersion =1.5.31
11
+ dokkaVersion =1.5.31
10
12
kotlin.native.ignoreDisabledTargets =true
11
13
12
-
13
14
# testing/utility
15
+ kotlinxBenchmarkVersion =0.3.1
16
+
14
17
# FIXME - junit5 not working
15
18
ktlintVersion =0.40.0
16
19
kotestVersion =4.0.5
Original file line number Diff line number Diff line change 5
5
6
6
pluginManagement {
7
7
repositories {
8
- maven { url = uri( " https://dl.bintray.com/kotlin/kotlin-eap " ) }
9
- maven { url = uri (" https://kotlin.bintray.com/kotlinx " ) }
10
-
8
+ mavenCentral()
9
+ maven(" https://plugins.gradle.org/m2/ " )
10
+ google()
11
11
gradlePluginPortal()
12
12
}
13
+
14
+ plugins {
15
+ val kotlinVersion: String by settings
16
+ val dokkaVersion: String by settings
17
+ val kotlinxBenchmarkVersion: String by settings
18
+ val smithyGradleVersion: String by settings
19
+ id(" org.jetbrains.dokka" ) version dokkaVersion
20
+ id(" org.jetbrains.kotlin.jvm" ) version kotlinVersion
21
+ id(" org.jetbrains.kotlinx.benchmark" ) version kotlinxBenchmarkVersion
22
+ id(" software.amazon.smithy" ) version smithyGradleVersion
23
+ }
13
24
}
14
25
15
26
rootProject.name = " aws-sdk-swift"
You can’t perform that action at this time.
0 commit comments