Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.core.filebuffers.tests/META-INF/MANIFEST.MF19
-rw-r--r--org.eclipse.core.filebuffers.tests/build.properties8
-rw-r--r--org.eclipse.core.filebuffers.tests/plugin.xml25
-rw-r--r--org.eclipse.jface.text.tests/META-INF/MANIFEST.MF19
-rw-r--r--org.eclipse.jface.text.tests/build.properties8
-rw-r--r--org.eclipse.jface.text.tests/plugin.xml23
-rw-r--r--org.eclipse.text.tests/META-INF/MANIFEST.MF17
-rw-r--r--org.eclipse.text.tests/build.properties8
-rw-r--r--org.eclipse.text.tests/plugin.xml21
-rw-r--r--org.eclipse.ui.editors.tests/META-INF/MANIFEST.MF22
-rw-r--r--org.eclipse.ui.editors.tests/build.properties8
-rw-r--r--org.eclipse.ui.editors.tests/plugin.xml29
-rw-r--r--org.eclipse.ui.workbench.texteditor.tests/META-INF/MANIFEST.MF21
-rw-r--r--org.eclipse.ui.workbench.texteditor.tests/build.properties8
-rw-r--r--org.eclipse.ui.workbench.texteditor.tests/plugin.xml24
15 files changed, 118 insertions, 142 deletions
diff --git a/org.eclipse.core.filebuffers.tests/META-INF/MANIFEST.MF b/org.eclipse.core.filebuffers.tests/META-INF/MANIFEST.MF
new file mode 100644
index 00000000000..39eb17ffbaa
--- /dev/null
+++ b/org.eclipse.core.filebuffers.tests/META-INF/MANIFEST.MF
@@ -0,0 +1,19 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: %Plugin.name
+Bundle-SymbolicName: org.eclipse.core.filebuffers.tests
+Bundle-Version: 3.4.0.qualifier
+Bundle-ClassPath: filebufferstests.jar
+Bundle-Activator: org.eclipse.core.filebuffers.tests.FileBuffersTestPlugin
+Bundle-Vendor: %Plugin.providerName
+Bundle-Localization: plugin
+Export-Package: org.eclipse.core.filebuffers.tests
+Require-Bundle:
+ org.eclipse.core.runtime;bundle-version="[3.2.0,4.0.0)",
+ org.eclipse.core.filesystem;bundle-version="[1.1.0,2.0.0)",
+ org.eclipse.core.resources;bundle-version="[3.2.0,4.0.0)";resolution:=optional,
+ org.eclipse.core.filebuffers;bundle-version="[3.3.0,4.0.0)",
+ org.eclipse.text;bundle-version="[3.3.0,4.0.0)",
+ org.junit;bundle-version="[3.8.2,3.9)"
+Eclipse-LazyStart: true
+Bundle-RequiredExecutionEnvironment: J2SE-1.4
diff --git a/org.eclipse.core.filebuffers.tests/build.properties b/org.eclipse.core.filebuffers.tests/build.properties
index 41bc27a9d6a..301359bba8b 100644
--- a/org.eclipse.core.filebuffers.tests/build.properties
+++ b/org.eclipse.core.filebuffers.tests/build.properties
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2000, 2005 IBM Corporation and others.
+# Copyright (c) 2000, 2007 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,12 +8,12 @@
# Contributors:
# IBM Corporation - initial API and implementation
###############################################################################
-bin.includes = plugin.xml,\
- plugin.properties,\
+bin.includes = plugin.properties,\
test.xml,\
about.html,\
testResources/,\
- *.jar
+ *.jar,\
+ META-INF/
src.includes = about.html
diff --git a/org.eclipse.core.filebuffers.tests/plugin.xml b/org.eclipse.core.filebuffers.tests/plugin.xml
deleted file mode 100644
index 453cb4f6095..00000000000
--- a/org.eclipse.core.filebuffers.tests/plugin.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<?eclipse version="3.0"?>
-<plugin
- id="org.eclipse.core.filebuffers.tests"
- name="%Plugin.name"
- version="3.2.0.qualifier"
- provider-name="%Plugin.providerName"
- class="org.eclipse.core.filebuffers.tests.FileBuffersTestPlugin">
-
- <runtime>
- <library name="filebufferstests.jar">
- <export name="*"/>
- </library>
- </runtime>
- <requires>
- <import plugin="org.eclipse.core.runtime"/>
- <import plugin="org.eclipse.core.filebuffers"/>
- <import plugin="org.eclipse.core.filesystem"/>
- <import plugin="org.eclipse.core.resources"/>
- <import plugin="org.junit"/>
- <import plugin="org.eclipse.text"/>
- </requires>
-
-
-</plugin>
diff --git a/org.eclipse.jface.text.tests/META-INF/MANIFEST.MF b/org.eclipse.jface.text.tests/META-INF/MANIFEST.MF
new file mode 100644
index 00000000000..eeeb8bf53d5
--- /dev/null
+++ b/org.eclipse.jface.text.tests/META-INF/MANIFEST.MF
@@ -0,0 +1,19 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: %Plugin.name
+Bundle-SymbolicName: org.eclipse.jface.text.tests
+Bundle-Version: 3.4.0.qualifier
+Bundle-ClassPath: jfacetexttests.jar
+Bundle-Vendor: %Plugin.providerName
+Bundle-Localization: plugin
+Export-Package:
+ org.eclipse.jface.text.tests,
+ org.eclipse.jface.text.tests.reconciler,
+ org.eclipse.jface.text.tests.rules
+Require-Bundle:
+ org.eclipse.jface.text;bundle-version="[3.3.0,4.0.0)",
+ org.eclipse.jface;bundle-version="[3.3.0,4.0.0)",
+ org.junit;bundle-version="[3.8.2,3.9)",
+ org.eclipse.text.tests;bundle-version="[3.4.0,4.0.0)",
+ org.eclipse.core.runtime;bundle-version="[3.3.0,4.0.0)"
+Bundle-RequiredExecutionEnvironment: J2SE-1.4
diff --git a/org.eclipse.jface.text.tests/build.properties b/org.eclipse.jface.text.tests/build.properties
index ed8abca5de7..6cf8a329058 100644
--- a/org.eclipse.jface.text.tests/build.properties
+++ b/org.eclipse.jface.text.tests/build.properties
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2000, 2005 IBM Corporation and others.
+# Copyright (c) 2000, 2007 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,\
+bin.includes = plugin.properties,\
test.xml,\
about.html,\
- *.jar
+ *.jar,\
+ META-INF/
src.includes = about.html
diff --git a/org.eclipse.jface.text.tests/plugin.xml b/org.eclipse.jface.text.tests/plugin.xml
deleted file mode 100644
index f3a99906fc1..00000000000
--- a/org.eclipse.jface.text.tests/plugin.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<?eclipse version="3.0"?>
-<plugin
- id="org.eclipse.jface.text.tests"
- name="%Plugin.name"
- version="3.2.0.qualifier"
- provider-name="%Plugin.providerName">
-
- <runtime>
- <library name="jfacetexttests.jar">
- <export name="*"/>
- </library>
- </runtime>
-
- <requires>
- <import plugin="org.eclipse.jface.text"/>
- <import plugin="org.eclipse.jface"/>
- <import plugin="org.junit"/>
- <import plugin="org.eclipse.text.tests"/>
- <import plugin="org.eclipse.core.runtime"/>
- </requires>
-
-</plugin>
diff --git a/org.eclipse.text.tests/META-INF/MANIFEST.MF b/org.eclipse.text.tests/META-INF/MANIFEST.MF
new file mode 100644
index 00000000000..a75c49624e8
--- /dev/null
+++ b/org.eclipse.text.tests/META-INF/MANIFEST.MF
@@ -0,0 +1,17 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: %Plugin.name
+Bundle-SymbolicName: org.eclipse.text.tests
+Bundle-Version: 3.4.0.qualifier
+Bundle-ClassPath: texttests.jar
+Bundle-Vendor: %Plugin.providerName
+Bundle-Localization: plugin
+Export-Package:
+ org.eclipse.text.tests,
+ org.eclipse.text.tests.link,
+ org.eclipse.text.tests.templates
+Require-Bundle:
+ org.eclipse.core.runtime;bundle-version="[3.3.0,4.0.0)",
+ org.eclipse.text;bundle-version="[3.3.0,4.0.0)",
+ org.junit;bundle-version="[3.8.2,3.9)"
+Bundle-RequiredExecutionEnvironment: J2SE-1.4
diff --git a/org.eclipse.text.tests/build.properties b/org.eclipse.text.tests/build.properties
index d71b5584e45..02d5ab95dfb 100644
--- a/org.eclipse.text.tests/build.properties
+++ b/org.eclipse.text.tests/build.properties
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2000, 2005 IBM Corporation and others.
+# Copyright (c) 2000, 2007 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,\
+bin.includes = plugin.properties,\
test.xml,\
about.html,\
- *.jar
+ *.jar,\
+ META-INF/
src.includes = about.html
diff --git a/org.eclipse.text.tests/plugin.xml b/org.eclipse.text.tests/plugin.xml
deleted file mode 100644
index 760f8d3d575..00000000000
--- a/org.eclipse.text.tests/plugin.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<?eclipse version="3.0"?>
-<plugin
- id="org.eclipse.text.tests"
- name="%Plugin.name"
- version="3.3.0.qualifier"
- provider-name="%Plugin.providerName">
-
- <runtime>
- <library name="texttests.jar">
- <export name="*"/>
- </library>
- </runtime>
-
- <requires>
- <import plugin="org.eclipse.core.runtime.compatibility"/>
- <import plugin="org.eclipse.text"/>
- <import plugin="org.junit"/>
- </requires>
-
-</plugin>
diff --git a/org.eclipse.ui.editors.tests/META-INF/MANIFEST.MF b/org.eclipse.ui.editors.tests/META-INF/MANIFEST.MF
new file mode 100644
index 00000000000..f7024a91bd0
--- /dev/null
+++ b/org.eclipse.ui.editors.tests/META-INF/MANIFEST.MF
@@ -0,0 +1,22 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: %Plugin.name
+Bundle-SymbolicName: org.eclipse.ui.editors.tests
+Bundle-Version: 3.4.0.qualifier
+Bundle-ClassPath: editorstests.jar
+Bundle-Vendor: %Plugin.providerName
+Bundle-Localization: plugin
+Export-Package: org.eclipse.ui.editors.tests
+Require-Bundle:
+ org.eclipse.core.runtime,
+ org.junit;bundle-version="[3.8.2,3.9)",
+ org.eclipse.jface;bundle-version="[3.3.0,4.0.0)",
+ org.eclipse.ui.editors;bundle-version="[3.3.0,4.0.0)",
+ org.eclipse.ui.workbench;bundle-version="[3.3.0,4.0.0)",
+ org.eclipse.core.resources;bundle-version="[3.3.0,4.0.0)",
+ org.eclipse.core.filebuffers.tests;bundle-version="[3.4.0,4.0.0)",
+ org.eclipse.ui.ide;bundle-version="[3.3.0,4.0.0)",
+ org.eclipse.ui.workbench.texteditor;bundle-version="[3.3.0,4.0.0)",
+ org.eclipse.text;bundle-version="[3.3.0,4.0.0)",
+ org.eclipse.text.tests;bundle-version="[3.4.0,4.0.0)"
+Bundle-RequiredExecutionEnvironment: J2SE-1.4
diff --git a/org.eclipse.ui.editors.tests/build.properties b/org.eclipse.ui.editors.tests/build.properties
index 2ad752ee66e..281cf88d08f 100644
--- a/org.eclipse.ui.editors.tests/build.properties
+++ b/org.eclipse.ui.editors.tests/build.properties
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2000, 2005 IBM Corporation and others.
+# Copyright (c) 2000, 2007 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,\
+bin.includes = plugin.properties,\
test.xml,\
about.html,\
- *.jar
+ *.jar,\
+ META-INF/
src.includes = about.html
diff --git a/org.eclipse.ui.editors.tests/plugin.xml b/org.eclipse.ui.editors.tests/plugin.xml
deleted file mode 100644
index 1df14cb5e4c..00000000000
--- a/org.eclipse.ui.editors.tests/plugin.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<?eclipse version="3.0"?>
-<plugin
- id="org.eclipse.ui.editors.tests"
- name="%Plugin.name"
- version="3.2.0.qualifier"
- provider-name="%Plugin.providerName">
-
- <runtime>
- <library name="editorstests.jar">
- <export name="*"/>
- </library>
- </runtime>
-
- <requires>
- <import plugin="org.eclipse.core.runtime.compatibility"/>
- <import plugin="org.junit"/>
- <import plugin="org.eclipse.jface"/>
- <import plugin="org.eclipse.ui.editors"/>
- <import plugin="org.eclipse.ui.workbench"/>
- <import plugin="org.eclipse.core.resources"/>
- <import plugin="org.eclipse.core.filebuffers.tests"/>
- <import plugin="org.eclipse.ui.ide"/>
- <import plugin="org.eclipse.ui.workbench.texteditor"/>
- <import plugin="org.eclipse.text"/>
- <import plugin="org.eclipse.text.tests"/>
- </requires>
-
-</plugin>
diff --git a/org.eclipse.ui.workbench.texteditor.tests/META-INF/MANIFEST.MF b/org.eclipse.ui.workbench.texteditor.tests/META-INF/MANIFEST.MF
new file mode 100644
index 00000000000..06413a7e8d7
--- /dev/null
+++ b/org.eclipse.ui.workbench.texteditor.tests/META-INF/MANIFEST.MF
@@ -0,0 +1,21 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: %Plugin.name
+Bundle-SymbolicName: org.eclipse.ui.workbench.texteditor.tests
+Bundle-Version: 3.4.0.qualifier
+Bundle-ClassPath: workbenchtexteditortests.jar
+Bundle-Vendor: %Plugin.providerName
+Bundle-Localization: plugin
+Export-Package:
+ org.eclipse.ui.workbench.texteditor.quickdiff.tests,
+ org.eclipse.ui.workbench.texteditor.tests,
+ org.eclipse.ui.workbench.texteditor.tests.revisions,
+ org.eclipse.ui.workbench.texteditor.tests.rulers
+Require-Bundle:
+ org.eclipse.core.runtime;bundle-version="[3.3.0,4.0.0)",
+ org.junit;bundle-version="[3.8.2,3.9)",
+ org.eclipse.text.tests;bundle-version="[3.4.0,4.0.0)",
+ org.eclipse.jface.text;bundle-version="[3.3.0,4.0.0)",
+ org.eclipse.ui.workbench.texteditor;bundle-version="[3.3.0,4.0.0)",
+ org.eclipse.ui;bundle-version="[3.3.0,4.0.0)"
+Bundle-RequiredExecutionEnvironment: J2SE-1.4
diff --git a/org.eclipse.ui.workbench.texteditor.tests/build.properties b/org.eclipse.ui.workbench.texteditor.tests/build.properties
index 230918fe0f1..a16ad760e3a 100644
--- a/org.eclipse.ui.workbench.texteditor.tests/build.properties
+++ b/org.eclipse.ui.workbench.texteditor.tests/build.properties
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2000, 2005 IBM Corporation and others.
+# Copyright (c) 2000, 2007 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,\
+bin.includes = plugin.properties,\
test.xml,\
about.html,\
- *.jar
+ *.jar,\
+ META-INF/
src.includes = about.html
diff --git a/org.eclipse.ui.workbench.texteditor.tests/plugin.xml b/org.eclipse.ui.workbench.texteditor.tests/plugin.xml
deleted file mode 100644
index 0fbc9f77df0..00000000000
--- a/org.eclipse.ui.workbench.texteditor.tests/plugin.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<?eclipse version="3.0"?>
-<plugin
- id="org.eclipse.ui.workbench.texteditor.tests"
- name="%Plugin.name"
- version="3.2.0.qualifier"
- provider-name="%Plugin.providerName">
-
- <runtime>
- <library name="workbenchtexteditortests.jar">
- <export name="*"/>
- </library>
- </runtime>
-
- <requires>
- <import plugin="org.eclipse.core.runtime.compatibility"/>
- <import plugin="org.junit"/>
- <import plugin="org.eclipse.text.tests"/>
- <import plugin="org.eclipse.jface.text"/>
- <import plugin="org.eclipse.ui.workbench.texteditor"/>
- <import plugin="org.eclipse.ui"/>
- </requires>
-
-</plugin>

Back to the top