]> source.dussan.org Git - jgit.git/commitdiff
Add org.eclipse.jgit.ant.test 65/3465/2
authorKetan Padegaonkar <KetanPadegaonkar@gmail.com>
Thu, 19 May 2011 06:28:28 +0000 (11:58 +0530)
committerChris Aniszczyk <caniszczyk@gmail.com>
Thu, 19 May 2011 13:55:17 +0000 (08:55 -0500)
Change-Id: I9bfb1298864294b8ce29b91660f1cf8316e5f620
Signed-off-by: Chris Aniszczyk <caniszczyk@gmail.com>
org.eclipse.jgit.ant.test/.classpath [new file with mode: 0644]
org.eclipse.jgit.ant.test/.gitignore [new file with mode: 0644]
org.eclipse.jgit.ant.test/.project [new file with mode: 0644]
org.eclipse.jgit.ant.test/.settings/org.eclipse.jdt.core.prefs [new file with mode: 0644]
org.eclipse.jgit.ant.test/.settings/org.eclipse.pde.core.prefs [new file with mode: 0644]
org.eclipse.jgit.ant.test/META-INF/MANIFEST.MF [new file with mode: 0644]
org.eclipse.jgit.ant.test/build.properties [new file with mode: 0644]
org.eclipse.jgit.ant.test/plugin.properties [new file with mode: 0644]

diff --git a/org.eclipse.jgit.ant.test/.classpath b/org.eclipse.jgit.ant.test/.classpath
new file mode 100644 (file)
index 0000000..ad32c83
--- /dev/null
@@ -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>
diff --git a/org.eclipse.jgit.ant.test/.gitignore b/org.eclipse.jgit.ant.test/.gitignore
new file mode 100644 (file)
index 0000000..7ca6747
--- /dev/null
@@ -0,0 +1,3 @@
+bin/
+target/
+tmp/
diff --git a/org.eclipse.jgit.ant.test/.project b/org.eclipse.jgit.ant.test/.project
new file mode 100644 (file)
index 0000000..2c69051
--- /dev/null
@@ -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>
diff --git a/org.eclipse.jgit.ant.test/.settings/org.eclipse.jdt.core.prefs b/org.eclipse.jgit.ant.test/.settings/org.eclipse.jdt.core.prefs
new file mode 100644 (file)
index 0000000..86d287e
--- /dev/null
@@ -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
diff --git a/org.eclipse.jgit.ant.test/.settings/org.eclipse.pde.core.prefs b/org.eclipse.jgit.ant.test/.settings/org.eclipse.pde.core.prefs
new file mode 100644 (file)
index 0000000..48279b5
--- /dev/null
@@ -0,0 +1,3 @@
+#Sat Feb 12 08:36:17 PST 2011
+eclipse.preferences.version=1
+resolve.requirebundle=false
diff --git a/org.eclipse.jgit.ant.test/META-INF/MANIFEST.MF b/org.eclipse.jgit.ant.test/META-INF/MANIFEST.MF
new file mode 100644 (file)
index 0000000..a3c2d81
--- /dev/null
@@ -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)"
diff --git a/org.eclipse.jgit.ant.test/build.properties b/org.eclipse.jgit.ant.test/build.properties
new file mode 100644 (file)
index 0000000..ad796b0
--- /dev/null
@@ -0,0 +1,6 @@
+source.. = src/
+output.. = bin/
+bin.includes = plugin.properties,\
+                          META-INF/,\
+                          .
+jre.compilation.profile = J2SE-1.5
diff --git a/org.eclipse.jgit.ant.test/plugin.properties b/org.eclipse.jgit.ant.test/plugin.properties
new file mode 100644 (file)
index 0000000..4eaecbc
--- /dev/null
@@ -0,0 +1,2 @@
+plugin_name=JGit Ant Tasks Tests (Incubation)
+provider_name=Eclipse JGit