Skip to content

Commit

Permalink
use api scope for consumers (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
graemerocher authored May 20, 2024
1 parent 37b7b1d commit 5aada08
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion micronaut-guice-annotation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

dependencies {
implementation(libs.managed.guice) {
api(libs.managed.guice) {
exclude(group="com.google.guava", module = "guava")
}
}
6 changes: 3 additions & 3 deletions micronaut-guice/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ plugins {
}

dependencies {
implementation(mn.micronaut.context)
implementation(projects.micronautGuiceAnnotation)
implementation(libs.managed.guice) {
api(mn.micronaut.context)
api(projects.micronautGuiceAnnotation)
api(libs.managed.guice) {
exclude(group="com.google.guava", module = "guava")
}
runtimeOnly(libs.managed.guava)
Expand Down

0 comments on commit 5aada08

Please sign in to comment.