diff --git a/xemantic-osc-network/.gitignore b/xemantic-osc-network/.gitignore new file mode 100644 index 0000000..3165f31 --- /dev/null +++ b/xemantic-osc-network/.gitignore @@ -0,0 +1 @@ +/application.log diff --git a/xemantic-osc-network/build.gradle.kts b/xemantic-osc-network/build.gradle.kts index b3f69fa..8f25d83 100644 --- a/xemantic-osc-network/build.gradle.kts +++ b/xemantic-osc-network/build.gradle.kts @@ -67,10 +67,12 @@ kotlin { dependencies { implementation(project(":xemantic-osc-test")) implementation(project(":xemantic-osc-api")) - implementation(libs.ktor.network) - implementation(libs.kotest.assertions.core) implementation(libs.kotlin.logging) implementation(libs.kotlin.test) + implementation(libs.kotlin.coroutines.test) + implementation(libs.ktor.network) + implementation(libs.kotest.assertions.core) + } } @@ -78,7 +80,12 @@ kotlin { dependsOn(jvmAndNativeMain) } + nativeMain { + dependsOn(jvmAndNativeMain) + } + jvmTest { + dependsOn(jvmAndNativeTest) dependencies { runtimeOnly(libs.log4j.slf4j2) runtimeOnly(libs.log4j.core) @@ -87,8 +94,8 @@ kotlin { } } - nativeMain { - dependsOn(jvmAndNativeMain) + nativeTest { + dependsOn(jvmAndNativeTest) } }