diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2010-03-20 12:52:29 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2010-03-20 12:52:29 +0000 |
commit | 2510f59230c89a27821b6ffa25624475e5c0a009 (patch) | |
tree | e2034f83a07382745dce0ab3f14cdaf419b73c62 /maven-plugins/trunk/maven-tuscany-plugin/src/main | |
parent | c1b86fd22aa7796f287e086c36e88490d1c33abe (diff) |
Update Tuscany run plugin for latest runtime and change to not include all extension by default but require that they're added separately where the plugin is used. Also update to use the exploded folder in the target directory as the contribution instead of the packaged artifacts as the bpel extension only seems to work with folder contributions
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@925592 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | maven-plugins/trunk/maven-tuscany-plugin/src/main/java/org/apache/tuscany/maven/plugin/TuscanyRunMojo.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/maven-plugins/trunk/maven-tuscany-plugin/src/main/java/org/apache/tuscany/maven/plugin/TuscanyRunMojo.java b/maven-plugins/trunk/maven-tuscany-plugin/src/main/java/org/apache/tuscany/maven/plugin/TuscanyRunMojo.java index e796cc2386..44f1067c14 100644 --- a/maven-plugins/trunk/maven-tuscany-plugin/src/main/java/org/apache/tuscany/maven/plugin/TuscanyRunMojo.java +++ b/maven-plugins/trunk/maven-tuscany-plugin/src/main/java/org/apache/tuscany/maven/plugin/TuscanyRunMojo.java @@ -105,7 +105,7 @@ public class TuscanyRunMojo extends AbstractMojo { protected void addProjectContribution(List<String> cs) throws MojoExecutionException { try { - String contribution = new File(buildDirectory.getParent(), finalName.getName() + packaging).toURI().toURL().toString(); + String contribution = new File(buildDirectory.getParent(), finalName.getName()).toURI().toURL().toString(); getLog().info("Project contribution: " + contribution); cs.add(contribution); |