Skip to content

Commit

Permalink
fix io engine dependency to networks engine (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
muellerj2 authored Aug 21, 2023
1 parent 79ba8f5 commit 1ac0834
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/io-impl/io-impl.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ dependencies {
api project(':io-api')
implementation project(':lang-api')

runtimeOnly project(':core-impl')
runtimeOnly project(':lang-impl')

// io libraries
Expand All @@ -13,8 +14,8 @@ dependencies {
// logging backend
implementation(libs.slf4j.api)

testImplementation project(':core-impl')
testImplementation project(':test-api')
testImplementation project(':core-impl')
testImplementation(libs.junit5.engine)

testRuntimeOnly(libs.junit.launcher)
Expand Down

0 comments on commit 1ac0834

Please sign in to comment.