Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2007-06-29 15:29:40 +0000
committerDani Megert2007-06-29 15:29:40 +0000
commitd0610b2a0deabb7ca386c6c1e513caedd8ebe417 (patch)
tree96fdcdd59289932917206069116c245b0b19305f /org.eclipse.text.tests
parentc2b1d29599b745e39731464c08fed98444bc5915 (diff)
downloadeclipse.platform.text-d0610b2a0deabb7ca386c6c1e513caedd8ebe417.tar.gz
eclipse.platform.text-d0610b2a0deabb7ca386c6c1e513caedd8ebe417.tar.xz
eclipse.platform.text-d0610b2a0deabb7ca386c6c1e513caedd8ebe417.zip
Converted to use manifest.mf.
Diffstat (limited to 'org.eclipse.text.tests')
-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
3 files changed, 21 insertions, 25 deletions
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>

Back to the top