diff options
author | Antonio Barone <syntonyze@gmail.com> | 2025-07-15 21:18:13 +0000 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2025-07-16 15:27:25 +0200 |
commit | 010858e24f1860fc70ecce534a274def79826abb (patch) | |
tree | c6b3c8ca5f50669f9947f1ca2d9cdc2befad23d1 | |
parent | 43617b4ee77b990d8bbd3748708e9fcef3ef3338 (diff) | |
download | jgit-010858e24f1860fc70ecce534a274def79826abb.tar.gz jgit-010858e24f1860fc70ecce534a274def79826abb.zip |
Fix missing import of org.eclipse.jetty:jetty-security:12.0.23
Change-Id: I71bdae995bf827635d57714f1ff28b3488d6a3d8
-rw-r--r-- | WORKSPACE | 6 | ||||
-rw-r--r-- | lib/BUILD | 3 |
2 files changed, 8 insertions, 1 deletions
@@ -261,6 +261,12 @@ maven_jar( ) maven_jar( + name = "jetty-ee8-security", + artifact = "org.eclipse.jetty.ee8:jetty-ee8-security:" + JETTY_VER, + sha1 = "0f7d8c859095af69cb350b72659c5e0efddc80e0", +) + +maven_jar( name = "jetty-server", artifact = "org.eclipse.jetty:jetty-server:" + JETTY_VER, sha1 = "c8618ac7741fd278dba2ff77c3cf5229e2235356", @@ -194,9 +194,10 @@ java_library( name = "jetty-ee8-security", # TODO: This should be testonly but org.eclipse.jgit.pgm depends on it. visibility = ["//visibility:public"], - exports = ["@jetty-security//jar"], + exports = ["@jetty-ee8-security//jar"], ) + java_library( name = "jsch", visibility = [ |