Author: dennyxu
Date: 2008-11-10 04:21:42 -0500 (Mon, 10 Nov 2008)
New Revision: 11626
Added:
trunk/esb/plugins/org.jboss.tools.esb.project.core/plugin.properties
Removed:
trunk/esb/plugins/org.jboss.tools.esb.project.ui/plugin.properties
Modified:
trunk/esb/plugins/org.jboss.tools.esb.core/plugin.properties
trunk/esb/plugins/org.jboss.tools.esb.project.core/META-INF/MANIFEST.MF
trunk/esb/plugins/org.jboss.tools.esb.project.core/plugin.xml
trunk/esb/plugins/org.jboss.tools.esb.project.core/src/org/jboss/tools/esb/core/facet/JBossESBFacetInstallationDelegate.java
trunk/esb/plugins/org.jboss.tools.esb.project.ui/META-INF/MANIFEST.MF
trunk/esb/plugins/org.jboss.tools.esb.project.ui/build.properties
trunk/esb/plugins/org.jboss.tools.esb.ui/plugin.properties
Log:
JBIDE-3115:Ensure that correct provider name appears for plug-ins
Modified: trunk/esb/plugins/org.jboss.tools.esb.core/plugin.properties
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.core/plugin.properties 2008-11-10 08:53:12 UTC
(rev 11625)
+++ trunk/esb/plugins/org.jboss.tools.esb.core/plugin.properties 2008-11-10 09:21:42 UTC
(rev 11626)
@@ -0,0 +1,2 @@
+providerName=JBoss, a division of Red Hat
+pluginName=ESB Core Plugin
\ No newline at end of file
Modified: trunk/esb/plugins/org.jboss.tools.esb.project.core/META-INF/MANIFEST.MF
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.project.core/META-INF/MANIFEST.MF 2008-11-10
08:53:12 UTC (rev 11625)
+++ trunk/esb/plugins/org.jboss.tools.esb.project.core/META-INF/MANIFEST.MF 2008-11-10
09:21:42 UTC (rev 11626)
@@ -1,6 +1,6 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: %PLUGIN_NAME
+Bundle-Name: %pluginName
Bundle-SymbolicName: org.jboss.tools.esb.project.core;singleton:=true
Bundle-Version: 1.0.0
Bundle-Localization: plugin
@@ -26,7 +26,7 @@
org.eclipse.wst.server.core,
org.eclipse.jst.common.project.facet.core;bundle-version="1.3.0"
Bundle-ActivationPolicy: lazy
-Bundle-Vendor: %PLUGIN_PROVIDER
+Bundle-Vendor: %providerName
Export-Package: org.jboss.tools.esb.core,
org.jboss.tools.esb.core.facet,
org.jboss.tools.esb.core.messages,
Added: trunk/esb/plugins/org.jboss.tools.esb.project.core/plugin.properties
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.project.core/plugin.properties
(rev 0)
+++ trunk/esb/plugins/org.jboss.tools.esb.project.core/plugin.properties 2008-11-10
09:21:42 UTC (rev 11626)
@@ -0,0 +1,2 @@
+providerName=JBoss, a division of Red Hat
+pluginName=JBoss ESB Project Core Plugin
\ No newline at end of file
Modified: trunk/esb/plugins/org.jboss.tools.esb.project.core/plugin.xml
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.project.core/plugin.xml 2008-11-10 08:53:12 UTC
(rev 11625)
+++ trunk/esb/plugins/org.jboss.tools.esb.project.core/plugin.xml 2008-11-10 09:21:42 UTC
(rev 11626)
@@ -139,4 +139,11 @@
</moduleType>
</moduleFactory>
</extension>
+ <extension
+ point="org.eclipse.wst.server.core.moduleArtifactAdapters">
+ <moduleArtifactAdapter
+ id="org.jboss.tools.esb.project.core.moduleArtifactAdapter1">
+ <enablement></enablement>
+ </moduleArtifactAdapter>
+ </extension>
</plugin>
Modified:
trunk/esb/plugins/org.jboss.tools.esb.project.core/src/org/jboss/tools/esb/core/facet/JBossESBFacetInstallationDelegate.java
===================================================================
---
trunk/esb/plugins/org.jboss.tools.esb.project.core/src/org/jboss/tools/esb/core/facet/JBossESBFacetInstallationDelegate.java 2008-11-10
08:53:12 UTC (rev 11625)
+++
trunk/esb/plugins/org.jboss.tools.esb.project.core/src/org/jboss/tools/esb/core/facet/JBossESBFacetInstallationDelegate.java 2008-11-10
09:21:42 UTC (rev 11626)
@@ -96,7 +96,6 @@
private void createProjectStructure(IProject project) throws CoreException{
- IFile esbFile = null;
String strContentFolder =
model.getStringProperty(IJBossESBFacetDataModelProperties.ESB_CONTENT_FOLDER);
project.setPersistentProperty(IJBossESBFacetDataModelProperties.QNAME_ESB_CONTENT_FOLDER,
strContentFolder);
IFolder esbContent = project.getFolder(strContentFolder);
@@ -106,7 +105,7 @@
esbContent.getFolder("lib").create(true, true, null);
esbContent.getFolder("META-INF").create(true, true, null);
- esbFile = createJBossESBXML(esbContent.getFolder("META-INF"));
+ createJBossESBXML(esbContent.getFolder("META-INF"));
project.refreshLocal(IResource.DEPTH_ZERO, null);
}
Modified: trunk/esb/plugins/org.jboss.tools.esb.project.ui/META-INF/MANIFEST.MF
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.project.ui/META-INF/MANIFEST.MF 2008-11-10
08:53:12 UTC (rev 11625)
+++ trunk/esb/plugins/org.jboss.tools.esb.project.ui/META-INF/MANIFEST.MF 2008-11-10
09:21:42 UTC (rev 11626)
@@ -1,6 +1,6 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: Esbproject Plug-in
+Bundle-Name: JBoss ESB Project UI Plugin
Bundle-SymbolicName: org.jboss.tools.esb.project.ui;singleton:=true
Bundle-Version: 1.0.0
Bundle-Activator: org.jboss.tools.esb.project.ui.ESBProjectPlugin
@@ -32,3 +32,4 @@
org.jboss.tools.esb.project.core;bundle-version="1.0.0",
org.jboss.tools.common.model.ui;bundle-version="2.0.0"
Eclipse-LazyStart: true
+Bundle-Vendor: JBoss, a division of Red Hat
Modified: trunk/esb/plugins/org.jboss.tools.esb.project.ui/build.properties
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.project.ui/build.properties 2008-11-10 08:53:12
UTC (rev 11625)
+++ trunk/esb/plugins/org.jboss.tools.esb.project.ui/build.properties 2008-11-10 09:21:42
UTC (rev 11626)
@@ -3,4 +3,5 @@
bin.includes = META-INF/,\
.,\
plugin.xml,\
- icons/
+ icons/,\
+ plugin.properties
Deleted: trunk/esb/plugins/org.jboss.tools.esb.project.ui/plugin.properties
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.project.ui/plugin.properties 2008-11-10 08:53:12
UTC (rev 11625)
+++ trunk/esb/plugins/org.jboss.tools.esb.project.ui/plugin.properties 2008-11-10 09:21:42
UTC (rev 11626)
@@ -1 +0,0 @@
-JBOSS_ESB_PREFERENCE_PAGE=JBoss ESB Runtimes
\ No newline at end of file
Modified: trunk/esb/plugins/org.jboss.tools.esb.ui/plugin.properties
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.ui/plugin.properties 2008-11-10 08:53:12 UTC
(rev 11625)
+++ trunk/esb/plugins/org.jboss.tools.esb.ui/plugin.properties 2008-11-10 09:21:42 UTC
(rev 11626)
@@ -1,2 +1,2 @@
-providerName=Red Hat, Inc.
+providerName=JBoss, a division of Red Hat
pluginName=ESB XML
\ No newline at end of file
Show replies by date