diff options
author | David Ostrovsky <david@ostrovsky.org> | 2019-06-17 23:28:52 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2019-06-18 02:22:21 +0200 |
commit | 7607465006aa226684a903b4b147982fe220428d (patch) | |
tree | 85b6062a7e060647b41c2a76e702703fef158a4c /org.eclipse.jgit/BUILD | |
parent | e3bcfe56c7bfab514625a65a6e7ae0d101fd698e (diff) | |
download | jgit-7607465006aa226684a903b4b147982fe220428d.tar.gz jgit-7607465006aa226684a903b4b147982fe220428d.zip |
[Java 11] Remove dependency on javax.xml.bind package
Replace javax.xml.bind.DatatypeConverter, that is not available any
more in Java 11 and later with Hex utility from non optional Bouncy
Castle library.
Bug: 540790
Change-Id: I9903c00ecc1a434e9795b8ba9267f02628fdc0e9
Signed-off-by: David Ostrovsky <david@ostrovsky.org>
Diffstat (limited to 'org.eclipse.jgit/BUILD')
-rw-r--r-- | org.eclipse.jgit/BUILD | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/org.eclipse.jgit/BUILD b/org.eclipse.jgit/BUILD index b67bfac5b6..814ecec9b8 100644 --- a/org.eclipse.jgit/BUILD +++ b/org.eclipse.jgit/BUILD @@ -14,10 +14,6 @@ RESOURCES = glob(["resources/**"]) java_library( name = "jgit", srcs = SRCS, - javacopts = select({ - "//:jdk9": ["--add-modules=java.xml.bind"], - "//conditions:default": [], - }), resource_strip_prefix = "org.eclipse.jgit/resources", resources = RESOURCES, deps = [ |