Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Herrmann2010-04-10 23:29:40 +0000
committerStephan Herrmann2010-04-10 23:29:40 +0000
commit134693650a4f4d0ed2c58ac878fc4e4c3ea4d5d1 (patch)
tree08807a4969d6a1dc70757bc7b0b5761cb84585b3 /testplugins
parent99280bf1a7c4b275f6b8961bd3e24d53d9f67772 (diff)
downloadorg.eclipse.objectteams-134693650a4f4d0ed2c58ac878fc4e4c3ea4d5d1.tar.gz
org.eclipse.objectteams-134693650a4f4d0ed2c58ac878fc4e4c3ea4d5d1.tar.xz
org.eclipse.objectteams-134693650a4f4d0ed2c58ac878fc4e4c3ea4d5d1.zip
deploy JCLMin also into this test plugin and correct path to otre.jar.
Diffstat (limited to 'testplugins')
-rw-r--r--testplugins/org.eclipse.objectteams.otdt.test.builder/JCL/jclMin1.5.jarbin0 -> 14782 bytes
-rwxr-xr-xtestplugins/org.eclipse.objectteams.otdt.test.builder/JCL/jclMin1.5src.zipbin0 -> 3582 bytes
-rw-r--r--testplugins/org.eclipse.objectteams.otdt.test.builder/src/org/eclipse/objectteams/otdt/test/builder/OTBuilderTests.java6
3 files changed, 2 insertions, 4 deletions
diff --git a/testplugins/org.eclipse.objectteams.otdt.test.builder/JCL/jclMin1.5.jar b/testplugins/org.eclipse.objectteams.otdt.test.builder/JCL/jclMin1.5.jar
new file mode 100644
index 000000000..0beaa19aa
--- /dev/null
+++ b/testplugins/org.eclipse.objectteams.otdt.test.builder/JCL/jclMin1.5.jar
Binary files differ
diff --git a/testplugins/org.eclipse.objectteams.otdt.test.builder/JCL/jclMin1.5src.zip b/testplugins/org.eclipse.objectteams.otdt.test.builder/JCL/jclMin1.5src.zip
new file mode 100755
index 000000000..9fda8f29a
--- /dev/null
+++ b/testplugins/org.eclipse.objectteams.otdt.test.builder/JCL/jclMin1.5src.zip
Binary files differ
diff --git a/testplugins/org.eclipse.objectteams.otdt.test.builder/src/org/eclipse/objectteams/otdt/test/builder/OTBuilderTests.java b/testplugins/org.eclipse.objectteams.otdt.test.builder/src/org/eclipse/objectteams/otdt/test/builder/OTBuilderTests.java
index 94282df98..501735c12 100644
--- a/testplugins/org.eclipse.objectteams.otdt.test.builder/src/org/eclipse/objectteams/otdt/test/builder/OTBuilderTests.java
+++ b/testplugins/org.eclipse.objectteams.otdt.test.builder/src/org/eclipse/objectteams/otdt/test/builder/OTBuilderTests.java
@@ -35,10 +35,8 @@ public class OTBuilderTests extends BuilderTests {
public static final String OT_RUNTIME_PATH;
public static final String OTRE_JAR_PATH;
static {
- OT_RUNTIME_PATH = JavaCore.getClasspathVariable(OTDTPlugin.OTDT_INSTALLDIR).toOSString();
- OTRE_JAR_PATH = OT_RUNTIME_PATH
- + File.separator
- + "lib" //$NON-NLS-1$
+ OT_RUNTIME_PATH = JavaCore.getClasspathVariable(OTDTPlugin.OTRUNTIME_LIBDIR).toOSString();
+ OTRE_JAR_PATH = OT_RUNTIME_PATH
+ File.separator
+ "otre.jar"; //$NON-NLS-1$
}

Back to the top