diff --git a/org.eclipse.jgit.test/.classpath b/org.eclipse.jgit.test/.classpath index af7d1e932..3c42728db 100644 --- a/org.eclipse.jgit.test/.classpath +++ b/org.eclipse.jgit.test/.classpath @@ -5,7 +5,6 @@ - - + diff --git a/org.eclipse.jgit.test/.project b/org.eclipse.jgit.test/.project index a7242a068..84c971100 100644 --- a/org.eclipse.jgit.test/.project +++ b/org.eclipse.jgit.test/.project @@ -10,8 +10,19 @@ + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + org.eclipse.jdt.core.javanature + org.eclipse.pde.PluginNature diff --git a/org.eclipse.jgit.test/META-INF/MANIFEST.MF b/org.eclipse.jgit.test/META-INF/MANIFEST.MF new file mode 100644 index 000000000..8c89f045c --- /dev/null +++ b/org.eclipse.jgit.test/META-INF/MANIFEST.MF @@ -0,0 +1,12 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: %plugin_name +Bundle-SymbolicName: org.eclipse.jgit.test +Bundle-Version: 0.6.0.qualifier +Bundle-Localization: plugin +Bundle-Vendor: %provider_name +Bundle-ActivationPolicy: lazy +Bundle-RequiredExecutionEnvironment: J2SE-1.5 +Import-Package: com.jcraft.jsch, + junit.framework, + junit.textui diff --git a/org.eclipse.jgit.test/build.properties b/org.eclipse.jgit.test/build.properties new file mode 100644 index 000000000..afc4855d6 --- /dev/null +++ b/org.eclipse.jgit.test/build.properties @@ -0,0 +1,6 @@ +source.. = tst/,\ + tst-rsrc/,\ + exttst/ +bin.includes = META-INF/,\ + .,\ + plugin.properties diff --git a/org.eclipse.jgit.test/plugin.properties b/org.eclipse.jgit.test/plugin.properties new file mode 100644 index 000000000..68e67f810 --- /dev/null +++ b/org.eclipse.jgit.test/plugin.properties @@ -0,0 +1,2 @@ +plugin_name=Java Git Core Tests (Incubation) +provider_name=eclipse.org