Skip to content

Commit

Permalink
third_party: replace "reactive_streams" and "rxjava3" in Debian build
Browse files Browse the repository at this point in the history
Closes: #13544
  • Loading branch information
jesec authored and meteorcloudy committed May 31, 2021
1 parent e730365 commit 52b517f
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
6 changes: 4 additions & 2 deletions third_party/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -524,13 +524,15 @@ distrib_java_import(
srcjar = "javax_annotations/javax.annotation-api-1.3.2-sources.jar",
)

java_import(
distrib_java_import(
name = "reactive_streams",
enable_distributions = ["debian"],
jars = ["reactive_streams/reactive-streams-1.0.3.jar"],
)

java_import(
distrib_java_import(
name = "rxjava3",
enable_distributions = ["debian"],
jars = ["rxjava3/rxjava-3.0.9.jar"],
exports = [":reactive_streams"],
deps = [":reactive_streams"],
Expand Down
13 changes: 13 additions & 0 deletions tools/distributions/debian/debian_java.BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -458,3 +458,16 @@ java_import(
"junit4.jar",
],
)

# libreactive-streams-java
java_import(
name = "reactive_streams",
jars = ["reactive-streams.jar"],
)

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

0 comments on commit 52b517f

Please sign in to comment.