Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJens Baumgart2010-11-30 10:13:28 +0000
committerMatthias Sohn2010-11-30 14:35:45 +0000
commitcfb8c6e0d57e09fa6013c2c27bb679df12455bc8 (patch)
treed488eacddceb3a4031a51867d0ea7ba99cd549c6 /org.eclipse.egit.ui/META-INF/MANIFEST.MF
parente9f2af26088f25a43db8c890b4be8ea641ff546b (diff)
downloadegit-cfb8c6e0d57e09fa6013c2c27bb679df12455bc8.tar.gz
egit-cfb8c6e0d57e09fa6013c2c27bb679df12455bc8.tar.xz
egit-cfb8c6e0d57e09fa6013c2c27bb679df12455bc8.zip
Implement basic authentification
Implementation of basic authentification with user and password. User and password entered in the clone wizard are put in the Eclipse secure store. A credentials provider was implemented that fetches credentials from the secure store and asks the user if credentials are not available. Change-Id: I5239c6595e39d2a855318649fccc8fe8ac5e5fb8 Signed-off-by: Jens Baumgart <jens.baumgart@sap.com> Signed-off-by: Edwin Kempin <edwin.kempin@sap.com> Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.egit.ui/META-INF/MANIFEST.MF')
-rw-r--r--org.eclipse.egit.ui/META-INF/MANIFEST.MF4
1 files changed, 3 insertions, 1 deletions
diff --git a/org.eclipse.egit.ui/META-INF/MANIFEST.MF b/org.eclipse.egit.ui/META-INF/MANIFEST.MF
index 092f28a7bf..16e0e26ed3 100644
--- a/org.eclipse.egit.ui/META-INF/MANIFEST.MF
+++ b/org.eclipse.egit.ui/META-INF/MANIFEST.MF
@@ -24,7 +24,8 @@ Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.4.0,4.0.0)",
com.jcraft.jsch;bundle-version="[0.1.37,0.2.0)",
org.eclipse.ui.navigator;bundle-version="[3.3.0,4.0.0)",
org.eclipse.ui.forms;bundle-version="[3.3.0,4.0.0)",
- org.eclipse.core.expressions;bundle-version="[3.4.0,4.0.0)"
+ org.eclipse.core.expressions;bundle-version="[3.4.0,4.0.0)",
+ org.eclipse.equinox.security;bundle-version="[1.0.0,2.0.0)"
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Import-Package: org.eclipse.egit.core;version="[0.10.0,0.11.0)",
@@ -32,6 +33,7 @@ Import-Package: org.eclipse.egit.core;version="[0.10.0,0.11.0)",
org.eclipse.egit.core.internal.util;version="[0.10.0,0.11.0)",
org.eclipse.egit.core.op;version="[0.10.0,0.11.0)",
org.eclipse.egit.core.project;version="[0.10.0,0.11.0)",
+ org.eclipse.egit.core.securestorage;version="[0.10.0,0.11.0)",
org.eclipse.egit.core.synchronize;version="[0.10.0,0.11.0)",
org.eclipse.egit.core.synchronize.dto;version="[0.10.0,0.11.0)",
org.eclipse.jgit.api;version="[0.10.0,0.11.0)",

Back to the top