diff options
author | Ketan Padegaonkar <KetanPadegaonkar@gmail.com> | 2011-05-19 11:58:28 +0530 |
---|---|---|
committer | Chris Aniszczyk <caniszczyk@gmail.com> | 2011-05-19 08:55:17 -0500 |
commit | dc30c95d971ca270f442403ada0d4e3b00151419 (patch) | |
tree | c4d0a3cbdd74a9a3be44ea1aaa1b154fb47c1d2b /org.eclipse.jgit.ant.test | |
parent | e3c4610c74c3eef0fdf573d45ab4fe0b01d61fe6 (diff) | |
download | jgit-dc30c95d971ca270f442403ada0d4e3b00151419.tar.gz jgit-dc30c95d971ca270f442403ada0d4e3b00151419.zip |
Add org.eclipse.jgit.ant.test
Change-Id: I9bfb1298864294b8ce29b91660f1cf8316e5f620
Signed-off-by: Chris Aniszczyk <caniszczyk@gmail.com>
Diffstat (limited to 'org.eclipse.jgit.ant.test')
-rw-r--r-- | org.eclipse.jgit.ant.test/.classpath | 7 | ||||
-rw-r--r-- | org.eclipse.jgit.ant.test/.gitignore | 3 | ||||
-rw-r--r-- | org.eclipse.jgit.ant.test/.project | 28 | ||||
-rw-r--r-- | org.eclipse.jgit.ant.test/.settings/org.eclipse.jdt.core.prefs | 8 | ||||
-rw-r--r-- | org.eclipse.jgit.ant.test/.settings/org.eclipse.pde.core.prefs | 3 | ||||
-rw-r--r-- | org.eclipse.jgit.ant.test/META-INF/MANIFEST.MF | 10 | ||||
-rw-r--r-- | org.eclipse.jgit.ant.test/build.properties | 6 | ||||
-rw-r--r-- | org.eclipse.jgit.ant.test/plugin.properties | 2 |
8 files changed, 67 insertions, 0 deletions
diff --git a/org.eclipse.jgit.ant.test/.classpath b/org.eclipse.jgit.ant.test/.classpath new file mode 100644 index 0000000000..ad32c83a78 --- /dev/null +++ b/org.eclipse.jgit.ant.test/.classpath @@ -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 index 0000000000..7ca6747433 --- /dev/null +++ b/org.eclipse.jgit.ant.test/.gitignore @@ -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 index 0000000000..2c690515f8 --- /dev/null +++ b/org.eclipse.jgit.ant.test/.project @@ -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 index 0000000000..86d287e3bf --- /dev/null +++ b/org.eclipse.jgit.ant.test/.settings/org.eclipse.jdt.core.prefs @@ -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 index 0000000000..48279b5a10 --- /dev/null +++ b/org.eclipse.jgit.ant.test/.settings/org.eclipse.pde.core.prefs @@ -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 index 0000000000..a3c2d81389 --- /dev/null +++ b/org.eclipse.jgit.ant.test/META-INF/MANIFEST.MF @@ -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 index 0000000000..ad796b0474 --- /dev/null +++ b/org.eclipse.jgit.ant.test/build.properties @@ -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 index 0000000000..4eaecbc9b6 --- /dev/null +++ b/org.eclipse.jgit.ant.test/plugin.properties @@ -0,0 +1,2 @@ +plugin_name=JGit Ant Tasks Tests (Incubation) +provider_name=Eclipse JGit |