Skip to content

Commit

Permalink
Use native Debian version of libcaffeine-java if available
Browse files Browse the repository at this point in the history
Closes #16493.

PiperOrigin-RevId: 482415733
Change-Id: I4aff6a2e2605f66c4400980ca13475fbc32858f7
  • Loading branch information
olekw authored and copybara-github committed Oct 20, 2022
1 parent 93853da commit 4201c69
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions tools/distributions/debian/debian_java.BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -456,13 +456,18 @@ java_import(
# libreactive-streams-java
java_import(
name = "reactive_streams",
jars = ["reactive-streams.jar"],
jars = ["java/reactive-streams.jar"],
)

# librx-java
java_import(
name = "rxjava3",
jars = ["rxjava.jar"],
jars = ["java/rxjava.jar"],
deps = [":reactive_streams"],
)

# libcaffeine-java
java_import(
name = "caffeine",
jars = ["java/caffeine.jar"],
)

0 comments on commit 4201c69

Please sign in to comment.