Skip to content

Commit

Permalink
Fixed product definition in plugin.xml
Browse files Browse the repository at this point in the history
This fixes the broblem of an ever changing plugin.xml file. 
It apears that the solution is in the extension id that is composed from plugin-name and product extension id in product-file and the appName property.
  • Loading branch information
Arvid Berg committed Dec 10, 2010
1 parent a67efd1 commit 016ba07
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion features/net.bioclipse.bslrunner_feature/bslrunner.product
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<?pde version="3.5"?>

<product uid="net.bioclipse.bslrunner" id="net.bioclipse.bslrunner.product" application="net.bioclipse.bslrunner.application" useFeatures="true" includeLaunchers="true">
<product name="BSL Runner" id="net.bioclipse.bslrunner.product" application="net.bioclipse.bslrunner.application" useFeatures="true" includeLaunchers="true">

<configIni use="default">
</configIni>
Expand Down
9 changes: 6 additions & 3 deletions plugins/net.bioclipse.bslrunner/plugin.xml
Expand Up @@ -14,12 +14,15 @@
</application>
</extension>
<extension
id="net.bioclipse.bslrunner.product"
id="product"
point="org.eclipse.core.runtime.products">
<product
application="net.bioclipse.bslrunner.application"
name="BSL runner">
name="BSL Runner">
<property
name="appName"
value="BSL Runner">
</property>
</product>
</extension>

</plugin>

0 comments on commit 016ba07

Please sign in to comment.