File tree Expand file tree Collapse file tree 4 files changed +24
-8
lines changed Expand file tree Collapse file tree 4 files changed +24
-8
lines changed Original file line number Diff line number Diff line change 22 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
33 * SPDX-License-Identifier: Apache-2.0.
44 */
5+
56plugins {
6- kotlin(" jvm" ) version " 1.5.0" apply false
7+ kotlin(" jvm" ) version " 1.5.31" apply false
8+ id(" org.jetbrains.dokka" )
79}
810
911allprojects {
1012 repositories {
1113 mavenLocal()
1214 mavenCentral()
13- jcenter()
1415 }
1516}
1617
Original file line number Diff line number Diff line change @@ -10,5 +10,6 @@ plugins {
1010}
1111
1212repositories {
13- jcenter()
13+ mavenLocal()
14+ mavenCentral()
1415}
Original file line number Diff line number Diff line change @@ -2,15 +2,18 @@ kotlin.code.style=official
22
33# codegen
44smithyVersion =1.13.1
5+ smithyGradleVersion =0.5.3
56
67smithySwiftVersion = 0.1.0
78
89# kotlin
9- kotlinVersion =1.5.0
10+ kotlinVersion =1.5.31
11+ dokkaVersion =1.5.31
1012kotlin.native.ignoreDisabledTargets =true
1113
12-
1314# testing/utility
15+ kotlinxBenchmarkVersion =0.3.1
16+
1417# FIXME - junit5 not working
1518ktlintVersion =0.40.0
1619kotestVersion =4.0.5
Original file line number Diff line number Diff line change 55
66pluginManagement {
77 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()
1111 gradlePluginPortal()
1212 }
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+ }
1324}
1425
1526rootProject.name = " aws-sdk-swift"
You can’t perform that action at this time.
0 commit comments