Shawn Pearce
15 years ago
committed by
Code Review
7 changed files with 94 additions and 0 deletions
@ -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/J2SE-1.5"/> |
||||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> |
||||
<classpathentry kind="src" path="tst"/> |
||||
<classpathentry kind="output" path="bin"/> |
||||
</classpath> |
@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<projectDescription> |
||||
<name>org.eclipse.jgit.http.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> |
@ -0,0 +1,7 @@
|
||||
#Tue Jan 12 23:43:54 CET 2010 |
||||
eclipse.preferences.version=1 |
||||
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 |
@ -0,0 +1,32 @@
|
||||
Manifest-Version: 1.0 |
||||
Bundle-ManifestVersion: 2 |
||||
Bundle-Name: Java Git HTTP Tests (Incubation) |
||||
Bundle-SymbolicName: org.eclipse.jgit.http.test |
||||
Bundle-Version: 0.6.0.qualifier |
||||
Bundle-Vendor: Eclipse.org |
||||
Bundle-RequiredExecutionEnvironment: J2SE-1.5 |
||||
Import-Package: javax.servlet;version="2.5.0", |
||||
javax.servlet.http;version="2.5.0", |
||||
junit.framework;version="3.8.2", |
||||
org.eclipse.jetty.continuation;version="7.0.1", |
||||
org.eclipse.jetty.http;version="7.0.1", |
||||
org.eclipse.jetty.http.security;version="7.0.1", |
||||
org.eclipse.jetty.io;version="7.0.1", |
||||
org.eclipse.jetty.security;version="7.0.1", |
||||
org.eclipse.jetty.security.authentication;version="7.0.1", |
||||
org.eclipse.jetty.server;version="7.0.1", |
||||
org.eclipse.jetty.server.handler;version="7.0.1", |
||||
org.eclipse.jetty.server.nio;version="7.0.1", |
||||
org.eclipse.jetty.servlet;version="7.0.1", |
||||
org.eclipse.jetty.util.component;version="7.0.1", |
||||
org.eclipse.jetty.util.log;version="7.0.1", |
||||
org.eclipse.jetty.util.thread;version="7.0.1", |
||||
org.eclipse.jgit.errors;version="0.6.0", |
||||
org.eclipse.jgit.http.server;version="0.6.0", |
||||
org.eclipse.jgit.http.server.glue;version="0.6.0", |
||||
org.eclipse.jgit.http.server.resolver;version="0.6.0", |
||||
org.eclipse.jgit.junit;version="0.6.0", |
||||
org.eclipse.jgit.lib;version="0.6.0", |
||||
org.eclipse.jgit.revwalk;version="0.6.0", |
||||
org.eclipse.jgit.transport;version="0.6.0", |
||||
org.eclipse.jgit.util;version="0.6.0" |
@ -0,0 +1,4 @@
|
||||
source.. = tst/ |
||||
output.. = bin/ |
||||
bin.includes = META-INF/,\ |
||||
. |
@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
||||
<launchConfiguration type="org.eclipse.jdt.junit.launchconfig"> |
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS"> |
||||
<listEntry value="/org.eclipse.jgit.http.test"/> |
||||
</listAttribute> |
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES"> |
||||
<listEntry value="4"/> |
||||
</listAttribute> |
||||
<stringAttribute key="org.eclipse.jdt.junit.CONTAINER" value="=org.eclipse.jgit.http.test"/> |
||||
<booleanAttribute key="org.eclipse.jdt.junit.KEEPRUNNING_ATTR" value="false"/> |
||||
<stringAttribute key="org.eclipse.jdt.junit.TESTNAME" value=""/> |
||||
<stringAttribute key="org.eclipse.jdt.junit.TEST_KIND" value="org.eclipse.jdt.junit.loader.junit4"/> |
||||
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value=""/> |
||||
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="org.eclipse.jgit.http.test"/> |
||||
</launchConfiguration> |
Loading…
Reference in new issue