Browse Source

Add org.eclipse.jgit.ant.test

Change-Id: I9bfb1298864294b8ce29b91660f1cf8316e5f620
Signed-off-by: Chris Aniszczyk <caniszczyk@gmail.com>
tags/v1.0.0.201106011211-rc3
Ketan Padegaonkar 13 years ago
parent
commit
dc30c95d97

+ 7
- 0
org.eclipse.jgit.ant.test/.classpath View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
</classpath>

+ 3
- 0
org.eclipse.jgit.ant.test/.gitignore View File

@@ -0,0 +1,3 @@
bin/
target/
tmp/

+ 28
- 0
org.eclipse.jgit.ant.test/.project View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>org.eclipse.jgit.ant.test</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.ManifestBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.SchemaBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.pde.PluginNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

+ 8
- 0
org.eclipse.jgit.ant.test/.settings/org.eclipse.jdt.core.prefs View File

@@ -0,0 +1,8 @@
#Sat Feb 12 08:27:33 PST 2011
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
org.eclipse.jdt.core.compiler.compliance=1.5
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.5

+ 3
- 0
org.eclipse.jgit.ant.test/.settings/org.eclipse.pde.core.prefs View File

@@ -0,0 +1,3 @@
#Sat Feb 12 08:36:17 PST 2011
eclipse.preferences.version=1
resolve.requirebundle=false

+ 10
- 0
org.eclipse.jgit.ant.test/META-INF/MANIFEST.MF View File

@@ -0,0 +1,10 @@
Bundle-Localization: plugin
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %plugin_name
Bundle-SymbolicName: org.eclipse.jgit.ant.test
Bundle-Version: 1.0.0.qualifier
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Import-Package: org.eclipse.jgit.ant.tasks;version="1.0.0",
org.junit;version="[4.0.0,5.0.0)"

+ 6
- 0
org.eclipse.jgit.ant.test/build.properties View File

@@ -0,0 +1,6 @@
source.. = src/
output.. = bin/
bin.includes = plugin.properties,\
META-INF/,\
.
jre.compilation.profile = J2SE-1.5

+ 2
- 0
org.eclipse.jgit.ant.test/plugin.properties View File

@@ -0,0 +1,2 @@
plugin_name=JGit Ant Tasks Tests (Incubation)
provider_name=Eclipse JGit

Loading…
Cancel
Save