Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndre Weinand2003-12-01 17:49:56 +0000
committerAndre Weinand2003-12-01 17:49:56 +0000
commit428c4172e2fecb5436a43868a5e4640dfc3dcc1e (patch)
tree4ad68570e28d0d486b6f2c409e63a3c5d111ea30
parent5f9f65d3aa8a2484cc2b8458f39627d5b2e5529c (diff)
downloadeclipse.platform.team-428c4172e2fecb5436a43868a5e4640dfc3dcc1e.tar.gz
eclipse.platform.team-428c4172e2fecb5436a43868a5e4640dfc3dcc1e.tar.xz
eclipse.platform.team-428c4172e2fecb5436a43868a5e4640dfc3dcc1e.zip
added runtime.compatibilityv20031201
-rw-r--r--tests/org.eclipse.compare.tests/.classpath14
-rw-r--r--tests/org.eclipse.compare.tests/.project2
-rw-r--r--tests/org.eclipse.compare.tests/plugin.xml30
3 files changed, 26 insertions, 20 deletions
diff --git a/tests/org.eclipse.compare.tests/.classpath b/tests/org.eclipse.compare.tests/.classpath
index 344356ca6..db826b40c 100644
--- a/tests/org.eclipse.compare.tests/.classpath
+++ b/tests/org.eclipse.compare.tests/.classpath
@@ -1,9 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
- <classpathentry kind="src" path="JUnit Tests"/>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
- <classpathentry kind="src" path="/org.junit"/>
- <classpathentry kind="src" path="/org.eclipse.compare"/>
- <classpathentry kind="src" path="/org.eclipse.jface.text"/>
- <classpathentry kind="output" path="bin"/>
+ <classpathentry kind="src" path="JUnit Tests"/>
+ <classpathentry kind="src" path="/org.junit"/>
+ <classpathentry kind="src" path="/org.eclipse.compare"/>
+ <classpathentry kind="src" path="/org.eclipse.core.runtime.compatibility"/>
+ <classpathentry kind="src" path="/org.eclipse.jface.text"/>
+ <classpathentry kind="src" path="/org.eclipse.jface"/>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+ <classpathentry kind="output" path="bin"/>
</classpath>
diff --git a/tests/org.eclipse.compare.tests/.project b/tests/org.eclipse.compare.tests/.project
index 3ed5ca356..8866a412d 100644
--- a/tests/org.eclipse.compare.tests/.project
+++ b/tests/org.eclipse.compare.tests/.project
@@ -4,6 +4,8 @@
<comment></comment>
<projects>
<project>org.eclipse.compare</project>
+ <project>org.eclipse.core.runtime.compatibility</project>
+ <project>org.eclipse.jface</project>
<project>org.eclipse.jface.text</project>
<project>org.junit</project>
</projects>
diff --git a/tests/org.eclipse.compare.tests/plugin.xml b/tests/org.eclipse.compare.tests/plugin.xml
index 2c76fe85b..46e43f51b 100644
--- a/tests/org.eclipse.compare.tests/plugin.xml
+++ b/tests/org.eclipse.compare.tests/plugin.xml
@@ -1,22 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
-
<plugin
id="org.eclipse.compare.tests"
name="%pluginName"
- provider-name="%providerName"
- version="3.0.0">
+ version="3.0.0"
+ provider-name="%providerName">
+
+ <runtime>
+ <library name="comparetests.jar">
+ <export name="*"/>
+ <packages prefixes="org.eclipse.compare.tests"/>
+ </library>
+ </runtime>
+ <requires>
+ <import plugin="org.junit"/>
+ <import plugin="org.eclipse.compare"/>
+ <import plugin="org.eclipse.core.runtime.compatibility"/>
+ <import plugin="org.eclipse.jface.text"/>
+ <import plugin="org.eclipse.jface"/>
+ </requires>
- <requires>
- <import plugin="org.junit"/>
- <import plugin="org.eclipse.compare"/>
- </requires>
- <runtime>
- <library name="comparetests.jar">
- <export name="*"/>
- <packages prefixes="org.eclipse.compare.tests"/>
- </library>
- </runtime>
-
</plugin>

Back to the top