diff --git a/.idea/libraries/antlr_antlr4.xml b/.idea/libraries/antlr_antlr4.xml index b8ed27b15..58a415da1 100644 --- a/.idea/libraries/antlr_antlr4.xml +++ b/.idea/libraries/antlr_antlr4.xml @@ -1,15 +1,15 @@ - + - - + + - + diff --git a/.idea/libraries/io_kotest_assertions_core_jvm.xml b/.idea/libraries/io_kotest_assertions_core_jvm.xml index af4ded0d5..425f0bb3d 100644 --- a/.idea/libraries/io_kotest_assertions_core_jvm.xml +++ b/.idea/libraries/io_kotest_assertions_core_jvm.xml @@ -1,20 +1,21 @@ - + - - - + + + - - - - - - - - - + + + + + + + + + + diff --git a/.idea/libraries/io_kotest_property_jvm.xml b/.idea/libraries/io_kotest_property_jvm.xml index 208d0b559..3abb185af 100644 --- a/.idea/libraries/io_kotest_property_jvm.xml +++ b/.idea/libraries/io_kotest_property_jvm.xml @@ -1,22 +1,22 @@ - + - - - + + + + + + + + - - - - - - - - - - - + + + + + + diff --git a/.idea/libraries/io_kotest_runner_junit5_jvm.xml b/.idea/libraries/io_kotest_runner_junit5_jvm.xml index f7d75d2b0..c88ebc9de 100644 --- a/.idea/libraries/io_kotest_runner_junit5_jvm.xml +++ b/.idea/libraries/io_kotest_runner_junit5_jvm.xml @@ -1,54 +1,51 @@ - + - - - - - - - + + + + + + + + - - - - - - + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - + + + + + + - - - + + diff --git a/.idea/libraries/jetbrains_kotlinx_cli_jvm.xml b/.idea/libraries/jetbrains_kotlinx_cli_jvm.xml index 946b35153..06564ef74 100644 --- a/.idea/libraries/jetbrains_kotlinx_cli_jvm.xml +++ b/.idea/libraries/jetbrains_kotlinx_cli_jvm.xml @@ -1,8 +1,8 @@ - + - + diff --git a/.idea/libraries/michael_bull_kotlin_result_jvm.xml b/.idea/libraries/michael_bull_kotlin_result_jvm.xml index 6cb4502f3..bba89fbce 100644 --- a/.idea/libraries/michael_bull_kotlin_result_jvm.xml +++ b/.idea/libraries/michael_bull_kotlin_result_jvm.xml @@ -1,13 +1,13 @@ - + - - - + + + - - + + diff --git a/.idea/libraries/slf4j_simple.xml b/.idea/libraries/slf4j_simple.xml index 3f857515d..db3f7df17 100644 --- a/.idea/libraries/slf4j_simple.xml +++ b/.idea/libraries/slf4j_simple.xml @@ -1,9 +1,9 @@ - + - - + + diff --git a/codeGenCpu6502/build.gradle b/codeGenCpu6502/build.gradle index 7c4ddac06..b0eb3c62c 100644 --- a/codeGenCpu6502/build.gradle +++ b/codeGenCpu6502/build.gradle @@ -28,7 +28,7 @@ dependencies { implementation project(':compilerAst') implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" // implementation "org.jetbrains.kotlin:kotlin-reflect" - implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.12" + implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.14" } diff --git a/codeGenExperimental6502/build.gradle b/codeGenExperimental6502/build.gradle index 7c4ddac06..b0eb3c62c 100644 --- a/codeGenExperimental6502/build.gradle +++ b/codeGenExperimental6502/build.gradle @@ -28,7 +28,7 @@ dependencies { implementation project(':compilerAst') implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" // implementation "org.jetbrains.kotlin:kotlin-reflect" - implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.12" + implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.14" } diff --git a/codeGenTargets/build.gradle b/codeGenTargets/build.gradle index 7c4ddac06..b0eb3c62c 100644 --- a/codeGenTargets/build.gradle +++ b/codeGenTargets/build.gradle @@ -28,7 +28,7 @@ dependencies { implementation project(':compilerAst') implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" // implementation "org.jetbrains.kotlin:kotlin-reflect" - implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.12" + implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.14" } diff --git a/compiler/build.gradle b/compiler/build.gradle index 7260713d0..d7ecedb5f 100644 --- a/compiler/build.gradle +++ b/compiler/build.gradle @@ -2,8 +2,8 @@ plugins { id 'java' id 'application' id "org.jetbrains.kotlin.jvm" - id 'com.github.johnrengelman.shadow' version '7.1.0' - id "io.kotest" version "0.3.8" + id 'com.github.johnrengelman.shadow' version '7.1.2' + id "io.kotest" version "0.3.9" } java { @@ -33,13 +33,13 @@ dependencies { implementation project(':codeGenTargets') implementation project(':codeGenCpu6502') implementation project(':codeGenExperimental6502') - implementation 'org.antlr:antlr4-runtime:4.9.2' + implementation 'org.antlr:antlr4-runtime:4.9.3' implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" // implementation "org.jetbrains.kotlin:kotlin-reflect" - implementation 'org.jetbrains.kotlinx:kotlinx-cli:0.3.3' - implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.12" + implementation 'org.jetbrains.kotlinx:kotlinx-cli:0.3.4' + implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.14" - testImplementation 'io.kotest:kotest-runner-junit5-jvm:4.6.3' + testImplementation 'io.kotest:kotest-runner-junit5-jvm:5.1.0' } configurations.all { diff --git a/compilerAst/build.gradle b/compilerAst/build.gradle index 8c68e2596..1d150332d 100644 --- a/compilerAst/build.gradle +++ b/compilerAst/build.gradle @@ -23,8 +23,8 @@ compileTestKotlin { dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" - implementation 'org.antlr:antlr4-runtime:4.9.2' - implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.12" + implementation 'org.antlr:antlr4-runtime:4.9.3' + implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.14" implementation project(':parser') } diff --git a/compilerInterfaces/build.gradle b/compilerInterfaces/build.gradle index 9f0cc7e30..d194a835c 100644 --- a/compilerInterfaces/build.gradle +++ b/compilerInterfaces/build.gradle @@ -26,7 +26,7 @@ compileTestKotlin { dependencies { implementation project(':compilerAst') implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" - implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.12" + implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.14" // implementation "org.jetbrains.kotlin:kotlin-reflect" } diff --git a/dbusCompilerService/build.gradle b/dbusCompilerService/build.gradle index 2b120de67..49d772467 100644 --- a/dbusCompilerService/build.gradle +++ b/dbusCompilerService/build.gradle @@ -3,7 +3,7 @@ plugins { id 'java' id 'application' id "org.jetbrains.kotlin.jvm" - id 'com.github.johnrengelman.shadow' version '7.1.0' + id 'com.github.johnrengelman.shadow' version '7.1.2' } java { @@ -27,9 +27,9 @@ compileTestKotlin { dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" // implementation "org.jetbrains.kotlin:kotlin-reflect" - implementation 'org.jetbrains.kotlinx:kotlinx-cli:0.3.3' + implementation 'org.jetbrains.kotlinx:kotlinx-cli:0.3.4' implementation "com.github.hypfvieh:dbus-java:3.3.1" - implementation "org.slf4j:slf4j-simple:1.7.30" + implementation "org.slf4j:slf4j-simple:1.7.36" } configurations.all { diff --git a/httpCompilerService/build.gradle b/httpCompilerService/build.gradle index 89361bb1a..38d543875 100644 --- a/httpCompilerService/build.gradle +++ b/httpCompilerService/build.gradle @@ -3,7 +3,7 @@ plugins { id 'java' id 'application' id "org.jetbrains.kotlin.jvm" - id 'com.github.johnrengelman.shadow' version '7.1.0' + id 'com.github.johnrengelman.shadow' version '7.1.2' } java { @@ -29,11 +29,11 @@ dependencies { implementation project(':compiler') implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" // implementation "org.jetbrains.kotlin:kotlin-reflect" - implementation 'org.jetbrains.kotlinx:kotlinx-cli:0.3.3' + implementation 'org.jetbrains.kotlinx:kotlinx-cli:0.3.4' implementation "org.takes:takes:1.19" implementation "javax.json:javax.json-api:1.1.4" implementation "org.glassfish:javax.json:1.1.4" - implementation "org.slf4j:slf4j-simple:1.7.30" + implementation "org.slf4j:slf4j-simple:1.7.36" } configurations.all { diff --git a/parser/build.gradle b/parser/build.gradle index 2d201d88d..d1befd59a 100644 --- a/parser/build.gradle +++ b/parser/build.gradle @@ -10,8 +10,8 @@ java { } dependencies { - antlr 'org.antlr:antlr4:4.9.2' - implementation 'org.antlr:antlr4-runtime:4.9.2' + antlr 'org.antlr:antlr4:4.9.3' + implementation 'org.antlr:antlr4-runtime:4.9.3' } configurations.all {