diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2009-10-31 19:39:18 -0700 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2009-11-02 17:55:55 -0800 |
commit | 7e8dc53881a4f7babbab9cd9979a49edb7ad03f1 (patch) | |
tree | 454ee570ae7863ac3f48ecf7cc3aa2052dc3806f /org.eclipse.jgit.console/META-INF/MANIFEST.MF | |
parent | 27a497f83e683d384d379ee75570f8c25a7aa624 (diff) | |
download | jgit-7e8dc53881a4f7babbab9cd9979a49edb7ad03f1.tar.gz jgit-7e8dc53881a4f7babbab9cd9979a49edb7ad03f1.zip |
Prompt for passwords from the console in jgit command line tools
If we are on a Java 6 JVM we should have the Console class available,
unless the user has redirected /dev/null to stdin. When there is a
console present we would prefer to use that for command line prompts
as that is what the user expects from a command line tool.
Change-Id: Ibaf87bb5540371d94d96d1b7e94ca002f752e5bd
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'org.eclipse.jgit.console/META-INF/MANIFEST.MF')
-rw-r--r-- | org.eclipse.jgit.console/META-INF/MANIFEST.MF | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/org.eclipse.jgit.console/META-INF/MANIFEST.MF b/org.eclipse.jgit.console/META-INF/MANIFEST.MF new file mode 100644 index 0000000000..ed12693f0c --- /dev/null +++ b/org.eclipse.jgit.console/META-INF/MANIFEST.MF @@ -0,0 +1,12 @@ +Bundle-Localization: plugin +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: %plugin_name +Bundle-SymbolicName: org.eclipse.jgit.console +Bundle-Version: 0.6.0.qualifier +Bundle-Vendor: %provider_name +Bundle-RequiredExecutionEnvironment: JavaSE-1.6 +Export-Package: org.eclipse.jgit.console;version="0.6.0" +Import-Package: com.jcraft.jsch;version="0.1.41", + org.eclipse.jgit.transport;version="0.6.0", + org.eclipse.jgit.util |