Skip to content

Commit

Permalink
Dep management
Browse files Browse the repository at this point in the history
Signed-off-by: Finn Carroll <[email protected]>
  • Loading branch information
finnegancarroll committed Nov 14, 2024
1 parent e2a0156 commit eda1c04
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle/forbidden-dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// we do not want any of these dependencies on the compilation classpath
// because they could then be used within OpenSearch
List<String> FORBIDDEN_DEPENDENCIES = [
'guava'
// 'guava'
]

Closure checkDeps = { Configuration configuration ->
Expand Down
1 change: 1 addition & 0 deletions modules/transport-netty4/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ dependencies {
// gRPC
compileOnly "javax.annotation:javax.annotation-api:${versions.javax_annotations}"
compileOnly "com.google.code.findbugs:jsr305:${versions.jsr305}"
compileOnly "com.google.guava:guava:${versions.guava}"
runtimeOnly "com.google.guava:guava:${versions.guava}"
api "com.google.guava:failureaccess:${versions.failureaccess}"
api "com.google.errorprone:error_prone_annotations:${versions.error_prone_annotations}"
Expand Down
3 changes: 3 additions & 0 deletions server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,9 @@ dependencies {
api "io.grpc:grpc-core:${versions.grpc}"
api "io.grpc:grpc-api:${versions.grpc}"

compileOnly "com.google.guava:guava:${versions.guava}"
runtimeOnly "com.google.guava:guava:${versions.guava}"

// https://mvnrepository.com/artifact/org.roaringbitmap/RoaringBitmap
implementation 'org.roaringbitmap:RoaringBitmap:1.3.0'

Expand Down

0 comments on commit eda1c04

Please sign in to comment.