fixed some warnings in the manifests
Signed-off-by: Florian Thienel <florian@thienel.org>
diff --git a/sourceediting/plugins/org.eclipse.wst.xml.vex.core/build.properties b/sourceediting/plugins/org.eclipse.wst.xml.vex.core/build.properties
index db63187..c49fa5e 100644
--- a/sourceediting/plugins/org.eclipse.wst.xml.vex.core/build.properties
+++ b/sourceediting/plugins/org.eclipse.wst.xml.vex.core/build.properties
@@ -2,8 +2,7 @@
META-INF/,\
.,\
lib/,\
- lib/flute.jar,\
- bin/
+ lib/flute.jar
src.includes = lib/
source.. = src/,\
src-emf/
diff --git a/sourceediting/plugins/org.eclipse.wst.xml.vex.dita/.project b/sourceediting/plugins/org.eclipse.wst.xml.vex.dita/.project
index 6e6dfca..f7bc347 100644
--- a/sourceediting/plugins/org.eclipse.wst.xml.vex.dita/.project
+++ b/sourceediting/plugins/org.eclipse.wst.xml.vex.dita/.project
@@ -6,11 +6,6 @@
</projects>
<buildSpec>
<buildCommand>
- <name>org.eclipse.jdt.core.javabuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
<name>org.eclipse.pde.ManifestBuilder</name>
<arguments>
</arguments>
@@ -23,6 +18,5 @@
</buildSpec>
<natures>
<nature>org.eclipse.pde.PluginNature</nature>
- <nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
diff --git a/sourceediting/plugins/org.eclipse.wst.xml.vex.docbook/META-INF/MANIFEST.MF b/sourceediting/plugins/org.eclipse.wst.xml.vex.docbook/META-INF/MANIFEST.MF
index 32692a5..9795fff 100644
--- a/sourceediting/plugins/org.eclipse.wst.xml.vex.docbook/META-INF/MANIFEST.MF
+++ b/sourceediting/plugins/org.eclipse.wst.xml.vex.docbook/META-INF/MANIFEST.MF
@@ -13,4 +13,4 @@
Bundle-Localization: plugin
Export-Package: org.eclipse.wst.xml.vex.docbook
Bundle-RequiredExecutionEnvironment: J2SE-1.5
-
+Bundle-ClassPath: .
diff --git a/sourceediting/plugins/org.eclipse.wst.xml.vex.docbook/build.properties b/sourceediting/plugins/org.eclipse.wst.xml.vex.docbook/build.properties
index 9afb186..25ee170 100644
--- a/sourceediting/plugins/org.eclipse.wst.xml.vex.docbook/build.properties
+++ b/sourceediting/plugins/org.eclipse.wst.xml.vex.docbook/build.properties
@@ -3,8 +3,7 @@
.,\
plugin.properties,\
META-INF/,\
- 4.5/,\
- bin/
+ 4.5/
src.includes = styles/,\
4.5/
diff --git a/sourceediting/plugins/org.eclipse.wst.xml.vex.ui/build.properties b/sourceediting/plugins/org.eclipse.wst.xml.vex.ui/build.properties
index 8605feb..ef23051 100644
--- a/sourceediting/plugins/org.eclipse.wst.xml.vex.ui/build.properties
+++ b/sourceediting/plugins/org.eclipse.wst.xml.vex.ui/build.properties
@@ -5,6 +5,5 @@
plugin.properties,\
icons/,\
META-INF/,\
- schema/,\
- bin/
+ schema/
source.. = src/
diff --git a/sourceediting/plugins/org.eclipse.wst.xml.vex.ui/plugin.xml b/sourceediting/plugins/org.eclipse.wst.xml.vex.ui/plugin.xml
index f2e75ea..371fe3a 100644
--- a/sourceediting/plugins/org.eclipse.wst.xml.vex.ui/plugin.xml
+++ b/sourceediting/plugins/org.eclipse.wst.xml.vex.ui/plugin.xml
@@ -535,7 +535,6 @@
<extension
point="org.eclipse.ui.propertyPages">
<page
- objectClass="org.eclipse.core.resources.IFile"
name="%DoctypePropertyPage.name"
class="org.eclipse.wst.xml.vex.ui.internal.config.DoctypePropertyPage"
nameFilter="*.dtd"
@@ -544,17 +543,26 @@
name="projectNature"
value="org.eclipse.wst.xml.vex.ui.pluginNature">
</filter>
+ <enabledWhen>
+ <instanceof
+ value="org.eclipse.core.resources.IFile">
+ </instanceof>
+ </enabledWhen>
</page>
<page
class="org.eclipse.wst.xml.vex.ui.internal.config.StylePropertyPage"
id="org.eclipse.wst.xml.vex.ui.config.StylePropertyPage"
name="%StylePropertyPage.name"
- nameFilter="*.css"
- objectClass="org.eclipse.core.resources.IFile">
+ nameFilter="*.css">
<filter
name="projectNature"
value="org.eclipse.wst.xml.vex.ui.pluginNature">
</filter>
+ <enabledWhen>
+ <instanceof
+ value="org.eclipse.core.resources.IFile">
+ </instanceof>
+ </enabledWhen>
</page>
</extension>
<extension
diff --git a/sourceediting/tests/org.eclipse.wst.xml.vex.core.tests/META-INF/MANIFEST.MF b/sourceediting/tests/org.eclipse.wst.xml.vex.core.tests/META-INF/MANIFEST.MF
index e143c76..b606ddc 100644
--- a/sourceediting/tests/org.eclipse.wst.xml.vex.core.tests/META-INF/MANIFEST.MF
+++ b/sourceediting/tests/org.eclipse.wst.xml.vex.core.tests/META-INF/MANIFEST.MF
@@ -22,5 +22,7 @@
org.eclipse.wst.xml.vex.core.internal.dom;x-internal:=true,
org.eclipse.wst.xml.vex.core.internal.layout;x-internal:=true,
org.eclipse.wst.xml.vex.core.internal.provisional.dom.tests;x-internal:=true,
+ org.eclipse.wst.xml.vex.core.internal.widget;x-internal:=true,
org.eclipse.wst.xml.vex.core.tests
Bundle-Localization: plugin
+Bundle-ClassPath: .
diff --git a/sourceediting/tests/org.eclipse.wst.xml.vex.ui.tests/.settings/org.eclipse.pde.prefs b/sourceediting/tests/org.eclipse.wst.xml.vex.ui.tests/.settings/org.eclipse.pde.prefs
index 1e880cc..a7deae5 100644
--- a/sourceediting/tests/org.eclipse.wst.xml.vex.ui.tests/.settings/org.eclipse.pde.prefs
+++ b/sourceediting/tests/org.eclipse.wst.xml.vex.ui.tests/.settings/org.eclipse.pde.prefs
@@ -1,22 +1,33 @@
-#Fri Oct 31 01:46:16 EDT 2008
-compilers.s.create-docs=false
-compilers.p.internal=1
-compilers.p.unresolved-ex-points=0
-compilers.p.missing-packages=1
-eclipse.preferences.version=1
-compilers.p.unresolved-import=0
-compilers.f.unresolved-features=1
-compilers.p.unknown-identifier=1
-compilers.p.unknown-resource=0
-compilers.s.open-tags=1
-compilers.p.not-externalized-att=1
-compilers.p.no-required-att=0
-compilers.p.discouraged-class=1
-compilers.incompatible-environment=1
-compilers.p.deprecated=1
-compilers.f.unresolved-plugins=1
-compilers.p.build=0
-compilers.p.unknown-element=1
-compilers.p.unknown-class=1
-compilers.s.doc-folder=doc
-compilers.p.unknown-attribute=0
+#Thu Dec 02 21:33:29 CET 2010
+compilers.f.unresolved-features=1
+compilers.f.unresolved-plugins=1
+compilers.incompatible-environment=1
+compilers.p.build=0
+compilers.p.build.bin.includes=1
+compilers.p.build.encodings=2
+compilers.p.build.java.compiler=2
+compilers.p.build.java.compliance=1
+compilers.p.build.missing.output=2
+compilers.p.build.output.library=1
+compilers.p.build.source.library=1
+compilers.p.build.src.includes=1
+compilers.p.deprecated=1
+compilers.p.discouraged-class=1
+compilers.p.internal=1
+compilers.p.missing-packages=1
+compilers.p.missing-version-export-package=2
+compilers.p.missing-version-import-package=2
+compilers.p.missing-version-require-bundle=2
+compilers.p.no-required-att=0
+compilers.p.not-externalized-att=1
+compilers.p.unknown-attribute=0
+compilers.p.unknown-class=1
+compilers.p.unknown-element=1
+compilers.p.unknown-identifier=1
+compilers.p.unknown-resource=0
+compilers.p.unresolved-ex-points=0
+compilers.p.unresolved-import=0
+compilers.s.create-docs=false
+compilers.s.doc-folder=doc
+compilers.s.open-tags=1
+eclipse.preferences.version=1
diff --git a/sourceediting/tests/org.eclipse.wst.xml.vex.ui.tests/META-INF/MANIFEST.MF b/sourceediting/tests/org.eclipse.wst.xml.vex.ui.tests/META-INF/MANIFEST.MF
index cdab1ae..097556e 100644
--- a/sourceediting/tests/org.eclipse.wst.xml.vex.ui.tests/META-INF/MANIFEST.MF
+++ b/sourceediting/tests/org.eclipse.wst.xml.vex.ui.tests/META-INF/MANIFEST.MF
@@ -11,7 +11,9 @@
org.junit;bundle-version="3.8.1",
org.eclipse.jface.text;bundle-version="3.0.0"
Bundle-RequiredExecutionEnvironment: J2SE-1.5
-Export-Package: org.eclipse.wst.xml.vex.ui.internal.editor.tests;x-internal:=true,
+Export-Package: org.eclipse.wst.xml.vex.ui.internal.config.tests;x-internal:=true,
+ org.eclipse.wst.xml.vex.ui.internal.editor.tests;x-internal:=true,
org.eclipse.wst.xml.vex.ui.internal.tests;x-internal:=true,
org.eclipse.wst.xml.vex.ui.tests
Bundle-Localization: plugin
+Bundle-ClassPath: .