File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/main/kotlin/io/github/kscripting/kscript/code Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ import org.jetbrains.kotlin.util.capitalizeDecapitalize.toLowerCaseAsciiOnly
44import java.time.ZoneOffset
55import java.time.ZonedDateTime
66
7- val kotlinVersion: String = " 1.7.21 "
7+ val kotlinVersion: String = " 2.1.21-embedded "
88
99plugins {
10- kotlin(" jvm" ) version " 1.7.21 "
10+ kotlin(" jvm" ) version " 2.1.21-embedded "
1111 application
1212 id(" com.adarshr.test-logger" ) version " 3.2.0"
1313 id(" com.github.gmazzo.buildconfig" ) version " 3.1.0"
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ object GradleTemplates {
1010 fun createGradleIdeaScript (script : Script ): String {
1111 val kotlinVersion = KotlinVersion .CURRENT
1212 val extendedDependencies = setOf (
13- Dependency (" org.jetbrains.kotlin:kotlin-stdlib" ),
13+ Dependency (" org.jetbrains.kotlin:kotlin-stdlib: $kotlinVersion " ),
1414 Dependency (" org.jetbrains.kotlin:kotlin-script-runtime:$kotlinVersion " ),
1515 Dependency (" io.github.kscripting:kscript-annotations:1.5.0" ),
1616 ) + script.dependencies
@@ -42,7 +42,7 @@ object GradleTemplates {
4242
4343 val kotlinVersion = KotlinVersion .CURRENT
4444 val extendedDependencies = setOf (
45- Dependency (" org.jetbrains.kotlin:kotlin-stdlib" ),
45+ Dependency (" org.jetbrains.kotlin:kotlin-stdlib: $kotlinVersion " ),
4646 Dependency (" org.jetbrains.kotlin:kotlin-script-runtime:$kotlinVersion " )
4747 ) + script.dependencies
4848
You can’t perform that action at this time.
0 commit comments