Browse Source
This way we depend upon the MANIFEST.MF to define our classpath and our build will act more like any other OSGI bundle build. Change-Id: I9e1f1f5a0bccb0ab0e39e49b75fb400fea446619 Signed-off-by: Shawn O. Pearce <spearce@spearce.org>stable-0.7
Shawn O. Pearce
15 years ago
9 changed files with 60 additions and 5 deletions
@ -0,0 +1,3 @@ |
|||||||
|
#Sat Oct 31 18:40:07 PDT 2009 |
||||||
|
eclipse.preferences.version=1 |
||||||
|
resolve.requirebundle=false |
@ -0,0 +1,22 @@ |
|||||||
|
Manifest-Version: 1.0 |
||||||
|
Bundle-ManifestVersion: 2 |
||||||
|
Bundle-Name: %plugin_name |
||||||
|
Bundle-SymbolicName: org.eclipse.jgit.pgm |
||||||
|
Bundle-Version: 0.6.0.qualifier |
||||||
|
Bundle-Vendor: %provider_name |
||||||
|
Bundle-Localization: plugin |
||||||
|
Bundle-RequiredExecutionEnvironment: J2SE-1.5 |
||||||
|
Import-Package: org.eclipse.jgit.awtui, |
||||||
|
org.eclipse.jgit.dircache, |
||||||
|
org.eclipse.jgit.errors, |
||||||
|
org.eclipse.jgit.lib, |
||||||
|
org.eclipse.jgit.revplot, |
||||||
|
org.eclipse.jgit.revwalk, |
||||||
|
org.eclipse.jgit.revwalk.filter, |
||||||
|
org.eclipse.jgit.transport, |
||||||
|
org.eclipse.jgit.treewalk, |
||||||
|
org.eclipse.jgit.treewalk.filter, |
||||||
|
org.kohsuke.args4j, |
||||||
|
org.kohsuke.args4j.spi |
||||||
|
Bundle-ActivationPolicy: lazy |
||||||
|
Export-Package: org.eclipse.jgit.pgm |
@ -0,0 +1,5 @@ |
|||||||
|
source.. = src/ |
||||||
|
output.. = bin/ |
||||||
|
bin.includes = META-INF/,\ |
||||||
|
.,\ |
||||||
|
plugin.properties |
@ -0,0 +1,2 @@ |
|||||||
|
plugin_name=Java Git Command Line Interface (Incubation) |
||||||
|
provider_name=eclipse.org |
Loading…
Reference in new issue