Skip to content

Commit

Permalink
Update java_export.bzl
Browse files Browse the repository at this point in the history
Fix docs to correctly use no-javadocs instead of no-javadoc which does not work.
  • Loading branch information
michaelschuett-tomtom authored Jun 4, 2024
1 parent a90bff9 commit 7f09f4d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions private/rules/java_export.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ def java_export(
with an extra dependency.
classifier_artifacts: A dict of classifier -> artifact of additional artifacts to publish to Maven.
doc_deps: Other `javadoc` targets that are referenced by the generated `javadoc` target
(if not using `tags = ["no-javadoc"]`)
(if not using `tags = ["no-javadocs"]`)
doc_url: The URL at which the generated `javadoc` will be hosted (if not using
`tags = ["no-javadoc"]`).
`tags = ["no-javadocs"]`).
visibility: The visibility of the target
kwargs: These are passed to [`java_library`](https://bazel.build/reference/be/java#java_library),
and so may contain any valid parameter for that rule.
Expand Down Expand Up @@ -186,9 +186,9 @@ def maven_export(
that workspace should be replaced by, or `None` if the exclusion shouldn't be replaced
with an extra dependency.
doc_deps: Other `javadoc` targets that are referenced by the generated `javadoc` target
(if not using `tags = ["no-javadoc"]`)
(if not using `tags = ["no-javadocs"]`)
doc_url: The URL at which the generated `javadoc` will be hosted (if not using
`tags = ["no-javadoc"]`).
`tags = ["no-javadocs"]`).
visibility: The visibility of the target
kwargs: These are passed to [`java_library`](https://bazel.build/reference/be/java#java_library),
and so may contain any valid parameter for that rule.
Expand Down

0 comments on commit 7f09f4d

Please sign in to comment.