diff options
author | rfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68> | 2008-10-22 03:39:17 +0000 |
---|---|---|
committer | rfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68> | 2008-10-22 03:39:17 +0000 |
commit | 43fb0b55d019f855ae26c88e03a46cb6636e5cfe (patch) | |
tree | 1fbfafd06a23a1c19ead73ec77314334dce8141a | |
parent | 4cd2e0d12154a16eec306bb277a8631482ba3095 (diff) |
Adjust the extra location setting
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@706851 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | branches/sca-equinox/tools/maven/maven-bundle-plugin/src/main/java/org/apache/tuscany/sca/tools/bundle/plugin/ThirdPartyBundleDistroMojo.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/branches/sca-equinox/tools/maven/maven-bundle-plugin/src/main/java/org/apache/tuscany/sca/tools/bundle/plugin/ThirdPartyBundleDistroMojo.java b/branches/sca-equinox/tools/maven/maven-bundle-plugin/src/main/java/org/apache/tuscany/sca/tools/bundle/plugin/ThirdPartyBundleDistroMojo.java index b5aadf710a..a2cc213b3e 100644 --- a/branches/sca-equinox/tools/maven/maven-bundle-plugin/src/main/java/org/apache/tuscany/sca/tools/bundle/plugin/ThirdPartyBundleDistroMojo.java +++ b/branches/sca-equinox/tools/maven/maven-bundle-plugin/src/main/java/org/apache/tuscany/sca/tools/bundle/plugin/ThirdPartyBundleDistroMojo.java @@ -174,7 +174,8 @@ public class ThirdPartyBundleDistroMojo extends AbstractMojo { ps.println("<features>"); ps.println("</features>"); ps.println("<extraLocations>"); - ps.println("<location path=\"${eclipse_home}\"/>"); + // Not sure why the extra path needs to the plugins folder + ps.println("<location path=\"${eclipse_home}/plugins\"/>"); ps.println("</extraLocations>"); ps.println("</content>"); |