Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2022-06-17 11:49:59 +0000
committerMatthias Sohn2022-06-17 11:49:59 +0000
commitf4cbf31ae4350f5df0f54401ba10fb9b84ec31e2 (patch)
tree9a3fce92b7c9f92bd60765602b6314197e472415
parentdb074a1352bc136584fd80e7d301ae60ffff5d59 (diff)
downloadjgit-f4cbf31ae4350f5df0f54401ba10fb9b84ec31e2.tar.gz
jgit-f4cbf31ae4350f5df0f54401ba10fb9b84ec31e2.tar.xz
jgit-f4cbf31ae4350f5df0f54401ba10fb9b84ec31e2.zip
Add missing package import javax.management to org.eclipse.jgit
Class org.eclipse.jgit.util.Monitoring uses JMX hence we need this import otherwise OSGi applications can face ClassNotFoundException. Bug: 577018 Change-Id: Ifd75337b87c7faec95d333b771bb0a2f3e46a418
-rw-r--r--org.eclipse.jgit/META-INF/MANIFEST.MF1
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.jgit/META-INF/MANIFEST.MF b/org.eclipse.jgit/META-INF/MANIFEST.MF
index 7f1af12ddb..9e275f9855 100644
--- a/org.eclipse.jgit/META-INF/MANIFEST.MF
+++ b/org.eclipse.jgit/META-INF/MANIFEST.MF
@@ -220,6 +220,7 @@ Export-Package: org.eclipse.jgit.annotations;version="5.13.2",
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Import-Package: com.googlecode.javaewah;version="[1.1.6,2.0.0)",
javax.crypto,
+ javax.management,
javax.net.ssl,
org.slf4j;version="[1.7.0,2.0.0)",
org.xml.sax,

Back to the top