From 91e1643627d546812796086a3c80d8a3dc66cf57 Mon Sep 17 00:00:00 2001 From: Irmen de Jong Date: Thu, 18 May 2023 11:47:30 +0200 Subject: [PATCH] update 3rd party libraries --- .../io_kotest_assertions_core_jvm.xml | 26 +++---- .idea/libraries/io_kotest_property_jvm.xml | 28 ++++---- .../libraries/io_kotest_runner_junit5_jvm.xml | 67 ++++++++----------- .../michael_bull_kotlin_result_jvm.xml | 12 ++-- codeCore/build.gradle | 2 +- codeGenCpu6502/build.gradle | 4 +- codeGenExperimental/build.gradle | 2 +- codeGenIntermediate/build.gradle | 4 +- compiler/build.gradle | 4 +- compilerAst/build.gradle | 2 +- intermediate/build.gradle | 2 +- virtualmachine/build.gradle | 4 +- 12 files changed, 72 insertions(+), 85 deletions(-) diff --git a/.idea/libraries/io_kotest_assertions_core_jvm.xml b/.idea/libraries/io_kotest_assertions_core_jvm.xml index 9e981baa4..5ae47b5af 100644 --- a/.idea/libraries/io_kotest_assertions_core_jvm.xml +++ b/.idea/libraries/io_kotest_assertions_core_jvm.xml @@ -1,21 +1,21 @@ - + - - - - - - + + + + + - - - - - - + + + + + + + diff --git a/.idea/libraries/io_kotest_property_jvm.xml b/.idea/libraries/io_kotest_property_jvm.xml index 33e75858b..8649b4aac 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 310ab1d9a..23f3539a1 100644 --- a/.idea/libraries/io_kotest_runner_junit5_jvm.xml +++ b/.idea/libraries/io_kotest_runner_junit5_jvm.xml @@ -1,55 +1,42 @@ - + - - - - + + + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - + + + + + diff --git a/.idea/libraries/michael_bull_kotlin_result_jvm.xml b/.idea/libraries/michael_bull_kotlin_result_jvm.xml index 89921de40..010bffd03 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/codeCore/build.gradle b/codeCore/build.gradle index 6a538d10b..56a2b1b2f 100644 --- a/codeCore/build.gradle +++ b/codeCore/build.gradle @@ -26,7 +26,7 @@ compileTestKotlin { dependencies { // should have no dependencies to other modules implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" - implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.16" + implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.17" } sourceSets { diff --git a/codeGenCpu6502/build.gradle b/codeGenCpu6502/build.gradle index 554e93580..024ced683 100644 --- a/codeGenCpu6502/build.gradle +++ b/codeGenCpu6502/build.gradle @@ -28,9 +28,9 @@ dependencies { implementation project(':codeCore') implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" // implementation "org.jetbrains.kotlin:kotlin-reflect" - implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.16" + implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.17" - testImplementation 'io.kotest:kotest-runner-junit5-jvm:5.5.5' + testImplementation 'io.kotest:kotest-runner-junit5-jvm:5.6.2' } sourceSets { diff --git a/codeGenExperimental/build.gradle b/codeGenExperimental/build.gradle index 1de089977..8a444fa3c 100644 --- a/codeGenExperimental/build.gradle +++ b/codeGenExperimental/build.gradle @@ -29,7 +29,7 @@ dependencies { implementation project(':codeGenIntermediate') implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" // implementation "org.jetbrains.kotlin:kotlin-reflect" - implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.16" + implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.17" } diff --git a/codeGenIntermediate/build.gradle b/codeGenIntermediate/build.gradle index b831708d1..110fa5c27 100644 --- a/codeGenIntermediate/build.gradle +++ b/codeGenIntermediate/build.gradle @@ -28,9 +28,9 @@ dependencies { implementation project(':intermediate') implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" // implementation "org.jetbrains.kotlin:kotlin-reflect" - implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.16" + implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.17" - testImplementation 'io.kotest:kotest-runner-junit5-jvm:5.5.5' + testImplementation 'io.kotest:kotest-runner-junit5-jvm:5.6.2' } sourceSets { diff --git a/compiler/build.gradle b/compiler/build.gradle index 9d2c88f09..838461ced 100644 --- a/compiler/build.gradle +++ b/compiler/build.gradle @@ -38,10 +38,10 @@ dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" // implementation "org.jetbrains.kotlin:kotlin-reflect" implementation 'org.jetbrains.kotlinx:kotlinx-cli:0.3.5' - implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.16" + implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.17" testImplementation project(':intermediate') - testImplementation 'io.kotest:kotest-runner-junit5-jvm:5.5.5' + testImplementation 'io.kotest:kotest-runner-junit5-jvm:5.6.2' } configurations.all { diff --git a/compilerAst/build.gradle b/compilerAst/build.gradle index 78fe42b96..781b01d82 100644 --- a/compilerAst/build.gradle +++ b/compilerAst/build.gradle @@ -25,7 +25,7 @@ dependencies { implementation project(':codeCore') implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" implementation "org.antlr:antlr4-runtime:4.12.0" - implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.16" + implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.17" implementation project(':parser') } diff --git a/intermediate/build.gradle b/intermediate/build.gradle index baf089782..ec73cc408 100644 --- a/intermediate/build.gradle +++ b/intermediate/build.gradle @@ -27,7 +27,7 @@ compileTestKotlin { dependencies { implementation project(':codeCore') implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" - testImplementation 'io.kotest:kotest-runner-junit5-jvm:5.5.5' + testImplementation 'io.kotest:kotest-runner-junit5-jvm:5.6.2' } sourceSets { diff --git a/virtualmachine/build.gradle b/virtualmachine/build.gradle index 3cf18baa7..e696c48b9 100644 --- a/virtualmachine/build.gradle +++ b/virtualmachine/build.gradle @@ -28,8 +28,8 @@ dependencies { implementation project(':codeCore') implementation project(':intermediate') implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" - implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.16" - testImplementation 'io.kotest:kotest-runner-junit5-jvm:5.5.5' + implementation "com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.17" + testImplementation 'io.kotest:kotest-runner-junit5-jvm:5.6.2' } sourceSets {