Skip to content

Commit

Permalink
runtime dependencies registered as api dependency (closes #10)
Browse files Browse the repository at this point in the history
  • Loading branch information
mfwgenerics committed May 27, 2024
1 parent 4eac9cd commit 1869273
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class GradlePlugin : KotlinCompilerPluginSupportPlugin {
override fun apply(target: Project) {
/* make sure we don't try to add dependency until it has been configured by kotlin plugin */
target.plugins.withId("org.jetbrains.kotlin.jvm") {
target.dependencies.add("implementation", "io.koalaql:kapshot-runtime:${BuildConfig.VERSION}")
target.dependencies.add("api", "io.koalaql:kapshot-runtime:${BuildConfig.VERSION}")
}
}

Expand Down

0 comments on commit 1869273

Please sign in to comment.