diff --git a/.idea/libraries/KotlinJavaRuntime.xml b/.idea/libraries/KotlinJavaRuntime.xml index 800ef4dcf..23d6cfc03 100644 --- a/.idea/libraries/KotlinJavaRuntime.xml +++ b/.idea/libraries/KotlinJavaRuntime.xml @@ -1,23 +1,23 @@ - + - - + + - + - - + + - + - - + + - + \ No newline at end of file diff --git a/.idea/libraries/antlr_antlr4.xml b/.idea/libraries/antlr_antlr4.xml index 4d7b191a6..28a797487 100644 --- a/.idea/libraries/antlr_antlr4.xml +++ b/.idea/libraries/antlr_antlr4.xml @@ -1,13 +1,13 @@ - + - - + + diff --git a/compiler/build.gradle b/compiler/build.gradle index 5443b7712..900ba2638 100644 --- a/compiler/build.gradle +++ b/compiler/build.gradle @@ -32,7 +32,7 @@ dependencies { implementation project(':codeGenIntermediate') implementation project(':codeGenExperimental') implementation project(':virtualmachine') - implementation "org.antlr:antlr4-runtime:4.13.1" + implementation "org.antlr:antlr4-runtime:4.13.2" implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" // implementation "org.jetbrains.kotlin:kotlin-reflect" implementation 'org.jetbrains.kotlinx:kotlinx-cli:0.3.6' diff --git a/compilerAst/build.gradle b/compilerAst/build.gradle index 516889108..f8d567206 100644 --- a/compilerAst/build.gradle +++ b/compilerAst/build.gradle @@ -23,7 +23,7 @@ compileTestKotlin { dependencies { implementation project(':codeCore') implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" - implementation "org.antlr:antlr4-runtime:4.13.1" + implementation "org.antlr:antlr4-runtime:4.13.2" implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:2.0.0" implementation project(':parser') } diff --git a/gradle.properties b/gradle.properties index b96124d95..ddbb41adf 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,5 +4,5 @@ org.gradle.parallel=true org.gradle.daemon=true kotlin.code.style=official javaVersion=11 -kotlinVersion=2.0.0 +kotlinVersion=2.0.10 version=10.4-SNAPSHOT diff --git a/parser/build.gradle b/parser/build.gradle index adbd6d1a9..3b354091d 100644 --- a/parser/build.gradle +++ b/parser/build.gradle @@ -9,8 +9,8 @@ java { } dependencies { - antlr 'org.antlr:antlr4:4.13.1' - implementation 'org.antlr:antlr4-runtime:4.13.1' + antlr 'org.antlr:antlr4:4.13.2' + implementation 'org.antlr:antlr4-runtime:4.13.2' } configurations.all {