Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjusted recommendations about dependency #9

Merged
merged 1 commit into from
Apr 4, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@

This plugin bundles JAXB libraries, and is a so-called _library plugin_.

It is currently not recommended to depend on it from your plugin.
It is designed to be automatically added as a dependency when running Jenkins on a Java 11 runtime, so that plugins using JAXB API do not fail on Java 11 (given JAXB libraries were removed from the JDK in Java 9).
JAXB libraries were removed from the JDK in Java 9.
For a plugin using the JAXB API and built against older LTS lines,
it is designed to be automatically added as a dependency when running Jenkins on a Java 11+ runtime,
so that the plugin does not fail to link.
A plugin using the JAXB API built against the 2.164.x or newer LTS line
should declare an explicit dependency on this library plugin.

See the link:CHANGELOG.adoc[CHANGELOG].

Expand Down