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 11
22plugins {
3- kotlin(" jvm" ) version " 1.4 .0"
3+ kotlin(" jvm" ) version " 1.6 .0"
44}
55
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" )
78
89allprojects {
910 repositories {
Original file line number Diff line number Diff line change @@ -4,10 +4,12 @@ plugins {
44}
55
66val kotlinVersion: String by rootProject.extra
7+ val kotlinCoroutinesVersion: String by rootProject.extra
78
89dependencies {
910 implementation(" org.jetbrains.kotlin:kotlin-scripting-common:$kotlinVersion " )
1011 implementation(" org.jetbrains.kotlin:kotlin-scripting-jvm:$kotlinVersion " )
1112 implementation(" org.jetbrains.kotlin:kotlin-scripting-dependencies:$kotlinVersion " )
1213 implementation(" org.jetbrains.kotlin:kotlin-scripting-dependencies-maven:$kotlinVersion " )
14+ implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinCoroutinesVersion " )
1315}
Original file line number Diff line number Diff line change @@ -4,12 +4,14 @@ plugins {
44}
55
66val kotlinVersion: String by rootProject.extra
7+ val kotlinCoroutinesVersion: String by rootProject.extra
78
89dependencies {
910 implementation(" org.jetbrains.kotlin:kotlin-scripting-common:$kotlinVersion " )
1011 implementation(" org.jetbrains.kotlin:kotlin-scripting-jvm:$kotlinVersion " )
1112 implementation(" org.jetbrains.kotlin:kotlin-scripting-jvm-host:$kotlinVersion " )
1213 implementation(" org.jetbrains.kotlin:kotlin-scripting-dependencies:$kotlinVersion " )
14+ implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinCoroutinesVersion " )
1315 implementation(" org.apache.ivy:ivy:2.5.0" )
1416}
1517
You can’t perform that action at this time.
0 commit comments