aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntonio Barone <syntonyze@gmail.com>2025-07-15 21:18:13 +0000
committerMatthias Sohn <matthias.sohn@sap.com>2025-07-16 15:27:25 +0200
commit010858e24f1860fc70ecce534a274def79826abb (patch)
treec6b3c8ca5f50669f9947f1ca2d9cdc2befad23d1
parent43617b4ee77b990d8bbd3748708e9fcef3ef3338 (diff)
downloadjgit-010858e24f1860fc70ecce534a274def79826abb.tar.gz
jgit-010858e24f1860fc70ecce534a274def79826abb.zip
Fix missing import of org.eclipse.jetty:jetty-security:12.0.23
Change-Id: I71bdae995bf827635d57714f1ff28b3488d6a3d8
-rw-r--r--WORKSPACE6
-rw-r--r--lib/BUILD3
2 files changed, 8 insertions, 1 deletions
diff --git a/WORKSPACE b/WORKSPACE
index b07afc2cbe..99156cd59e 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -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",
diff --git a/lib/BUILD b/lib/BUILD
index f8dae3b83b..f67eda94c9 100644
--- a/lib/BUILD
+++ b/lib/BUILD
@@ -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 = [