Skip to content

Commit 1781304

Browse files
committed
chore[live-objects]: change :java dependency to compileOnly in live-objects module
live-objects can be used both with ably-java and ably-android, making dependency `compileOnly` we prevent adding specific module (ably-java or ably-android) to the classpath
1 parent dac477f commit 1781304

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

live-objects/build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@ repositories {
1111
}
1212

1313
dependencies {
14-
implementation(project(":java"))
14+
compileOnly(project(":java"))
1515
implementation(libs.bundles.common)
1616
implementation(libs.coroutine.core)
1717

18+
testImplementation(project(":java"))
1819
testImplementation(kotlin("test"))
1920
testImplementation(libs.bundles.kotlin.tests)
2021
}

0 commit comments

Comments
 (0)