Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zarna2008-08-05 07:54:36 +0000
committerTomasz Zarna2008-08-05 07:54:36 +0000
commit801ba100561346a4b83e7d2e14a3103de1db3d25 (patch)
tree5c5555f9657989e14c2d5954d73b2aa3a77a8b28 /tests/org.eclipse.compare.tests
parentada97e40886a5cc60cc777d5232dc1ca50e918c1 (diff)
downloadeclipse.platform.team-801ba100561346a4b83e7d2e14a3103de1db3d25.tar.gz
eclipse.platform.team-801ba100561346a4b83e7d2e14a3103de1db3d25.tar.xz
eclipse.platform.team-801ba100561346a4b83e7d2e14a3103de1db3d25.zip
bug 242728: [Tests] Make org.eclipse.compare.tests a PDE project
Diffstat (limited to 'tests/org.eclipse.compare.tests')
-rw-r--r--tests/org.eclipse.compare.tests/.project14
-rw-r--r--tests/org.eclipse.compare.tests/META-INF/MANIFEST.MF21
-rw-r--r--tests/org.eclipse.compare.tests/build.properties12
-rw-r--r--tests/org.eclipse.compare.tests/plugin.xml30
4 files changed, 40 insertions, 37 deletions
diff --git a/tests/org.eclipse.compare.tests/.project b/tests/org.eclipse.compare.tests/.project
index 62e933d03..09bc603a1 100644
--- a/tests/org.eclipse.compare.tests/.project
+++ b/tests/org.eclipse.compare.tests/.project
@@ -2,15 +2,27 @@
<projectDescription>
<name>org.eclipse.compare.tests</name>
<comment></comment>
- <projects></projects>
+ <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.jdt.core.javanature</nature>
+ <nature>org.eclipse.pde.PluginNature</nature>
</natures>
</projectDescription>
diff --git a/tests/org.eclipse.compare.tests/META-INF/MANIFEST.MF b/tests/org.eclipse.compare.tests/META-INF/MANIFEST.MF
new file mode 100644
index 000000000..5138153be
--- /dev/null
+++ b/tests/org.eclipse.compare.tests/META-INF/MANIFEST.MF
@@ -0,0 +1,21 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: %pluginName
+Bundle-SymbolicName: org.eclipse.compare.tests;singleton:=true
+Bundle-Version: 3.4.100.qualifier
+Bundle-ClassPath: comparetests.jar
+Require-Bundle: org.junit,
+ org.eclipse.compare,
+ org.eclipse.jface.text,
+ org.eclipse.jface,
+ org.eclipse.core.runtime,
+ org.eclipse.test.performance,
+ org.eclipse.ui,
+ org.eclipse.core.resources,
+ org.eclipse.core.tests.resources,
+ org.eclipse.core.tests.harness,
+ org.eclipse.core.filesystem
+Bundle-Activator: org.eclipse.compare.tests.CompareTestPlugin
+Bundle-ActivationPolicy: lazy
+Bundle-Vendor: %providerName
+Bundle-RequiredExecutionEnvironment: J2SE-1.4
diff --git a/tests/org.eclipse.compare.tests/build.properties b/tests/org.eclipse.compare.tests/build.properties
index f5e7011df..3e62c584a 100644
--- a/tests/org.eclipse.compare.tests/build.properties
+++ b/tests/org.eclipse.compare.tests/build.properties
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2000, 2006 IBM Corporation and others.
+# Copyright (c) 2000, 2008 IBM Corporation and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
@@ -8,11 +8,11 @@
# Contributors:
# IBM Corporation - initial API and implementation
###############################################################################
-bin.includes= plugin.xml,\
- plugin.properties,\
- test.xml,\
- about.html,\
- *.jar
+bin.includes = plugin.properties,\
+ test.xml,\
+ about.html,\
+ *.jar,\
+ META-INF/
src.includes = about.html
diff --git a/tests/org.eclipse.compare.tests/plugin.xml b/tests/org.eclipse.compare.tests/plugin.xml
deleted file mode 100644
index bd0194ac6..000000000
--- a/tests/org.eclipse.compare.tests/plugin.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<?eclipse version="3.0"?>
-<plugin
- id="org.eclipse.compare.tests"
- name="%pluginName"
- version="3.1.0"
- provider-name="%providerName"
- class="org.eclipse.compare.tests.CompareTestPlugin">
-
- <runtime>
- <library name="comparetests.jar">
- <export name="*"/>
- </library>
- </runtime>
-
- <requires>
- <import plugin="org.junit"/>
- <import plugin="org.eclipse.compare"/>
- <import plugin="org.eclipse.jface.text"/>
- <import plugin="org.eclipse.jface"/>
- <import plugin="org.eclipse.jdt.junit"/>
- <import plugin="org.eclipse.core.runtime"/>
- <import plugin="org.eclipse.test.performance"/>
- <import plugin="org.eclipse.ui"/>
- <import plugin="org.eclipse.core.resources"/>
- <import plugin="org.eclipse.core.tests.resources"/>
- <import plugin="org.eclipse.core.tests.harness"/>
- </requires>
-
-</plugin>

Back to the top