From f9a337f7cff758e2e432b831dec32b6041483e8f Mon Sep 17 00:00:00 2001 From: Juan Moreno Date: Wed, 24 Apr 2019 09:30:30 -0300 Subject: [PATCH] CHORE Moved BAEL-2655's code from core-kotlin-2 to core-kotlin-io (#6807) --- core-kotlin-io/pom.xml | 33 +++++++++++++++---- .../com/baeldung/console/ConsoleIOUnitTest.kt | 0 .../org.mockito.plugins.MockMaker | 0 3 files changed, 26 insertions(+), 7 deletions(-) rename {core-kotlin-2 => core-kotlin-io}/src/test/kotlin/com/baeldung/console/ConsoleIOUnitTest.kt (100%) rename {core-kotlin-2 => core-kotlin-io}/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker (100%) diff --git a/core-kotlin-io/pom.xml b/core-kotlin-io/pom.xml index 2e21079d7f..a0b688a223 100644 --- a/core-kotlin-io/pom.xml +++ b/core-kotlin-io/pom.xml @@ -20,9 +20,21 @@ ${kotlin.version} - org.junit.platform - junit-platform-runner - ${junit.platform.version} + org.junit.jupiter + junit-jupiter + ${junit.jupiter.version} + test + + + org.mockito + mockito-core + ${mockito.version} + test + + + net.bytebuddy + byte-buddy + ${byte-buddy.version} test @@ -37,6 +49,12 @@ ${kotlin.version} test + + org.jetbrains.kotlin + kotlin-test-junit5 + ${kotlin.version} + test + @@ -69,10 +87,11 @@ - 1.2.71 - 1.1.1 - 5.2.0 + 1.3.30 + 5.4.2 + 2.27.0 + 1.9.12 3.10.0 - \ No newline at end of file + diff --git a/core-kotlin-2/src/test/kotlin/com/baeldung/console/ConsoleIOUnitTest.kt b/core-kotlin-io/src/test/kotlin/com/baeldung/console/ConsoleIOUnitTest.kt similarity index 100% rename from core-kotlin-2/src/test/kotlin/com/baeldung/console/ConsoleIOUnitTest.kt rename to core-kotlin-io/src/test/kotlin/com/baeldung/console/ConsoleIOUnitTest.kt diff --git a/core-kotlin-2/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker b/core-kotlin-io/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker similarity index 100% rename from core-kotlin-2/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker rename to core-kotlin-io/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker