Skip to content

Commit

Permalink
ableton tools module build cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
morisil committed Nov 9, 2023
1 parent cb5acab commit 525c803
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
1 change: 1 addition & 0 deletions xemantic-osc-network/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/application.log
15 changes: 11 additions & 4 deletions xemantic-osc-network/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -67,18 +67,25 @@ 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)

}
}

jvmMain {
dependsOn(jvmAndNativeMain)
}

nativeMain {
dependsOn(jvmAndNativeMain)
}

jvmTest {
dependsOn(jvmAndNativeTest)
dependencies {
runtimeOnly(libs.log4j.slf4j2)
runtimeOnly(libs.log4j.core)
Expand All @@ -87,8 +94,8 @@ kotlin {
}
}

nativeMain {
dependsOn(jvmAndNativeMain)
nativeTest {
dependsOn(jvmAndNativeTest)
}

}
Expand Down

0 comments on commit 525c803

Please sign in to comment.