File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
basic/jvm-maven-deps/script
simple-main-kts/simple-main-kts Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1
1
2
2
plugins {
3
- kotlin(" jvm" ) version " 1.4 .0"
3
+ kotlin(" jvm" ) version " 1.6 .0"
4
4
}
5
5
6
- val kotlinVersion: String by extra(" 1.4.0" )
6
+ val kotlinVersion: String by extra(" 1.6.0" )
7
+ val kotlinCoroutinesVersion: String by extra(" 1.6.0-RC" )
7
8
8
9
allprojects {
9
10
repositories {
Original file line number Diff line number Diff line change @@ -4,10 +4,12 @@ plugins {
4
4
}
5
5
6
6
val kotlinVersion: String by rootProject.extra
7
+ val kotlinCoroutinesVersion: String by rootProject.extra
7
8
8
9
dependencies {
9
10
implementation(" org.jetbrains.kotlin:kotlin-scripting-common:$kotlinVersion " )
10
11
implementation(" org.jetbrains.kotlin:kotlin-scripting-jvm:$kotlinVersion " )
11
12
implementation(" org.jetbrains.kotlin:kotlin-scripting-dependencies:$kotlinVersion " )
12
13
implementation(" org.jetbrains.kotlin:kotlin-scripting-dependencies-maven:$kotlinVersion " )
14
+ implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinCoroutinesVersion " )
13
15
}
Original file line number Diff line number Diff line change @@ -4,12 +4,14 @@ plugins {
4
4
}
5
5
6
6
val kotlinVersion: String by rootProject.extra
7
+ val kotlinCoroutinesVersion: String by rootProject.extra
7
8
8
9
dependencies {
9
10
implementation(" org.jetbrains.kotlin:kotlin-scripting-common:$kotlinVersion " )
10
11
implementation(" org.jetbrains.kotlin:kotlin-scripting-jvm:$kotlinVersion " )
11
12
implementation(" org.jetbrains.kotlin:kotlin-scripting-jvm-host:$kotlinVersion " )
12
13
implementation(" org.jetbrains.kotlin:kotlin-scripting-dependencies:$kotlinVersion " )
14
+ implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinCoroutinesVersion " )
13
15
implementation(" org.apache.ivy:ivy:2.5.0" )
14
16
}
15
17
You can’t perform that action at this time.
0 commit comments