summaryrefslogtreecommitdiffstats
path: root/maven-plugins/trunk/maven-tuscany-plugin
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-08-11 08:54:29 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-08-11 08:54:29 +0000
commit0698a526bc4493b45950eaca94d408821a7a6d67 (patch)
tree8466b96bfb9a589458c50af86d564c1409ad3931 /maven-plugins/trunk/maven-tuscany-plugin
parentf21e77ee99a2a752142a8c2ee34d1db9c2ea3b71 (diff)
Add recent extensions to the tuscany plugin
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@803039 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'maven-plugins/trunk/maven-tuscany-plugin')
-rw-r--r--maven-plugins/trunk/maven-tuscany-plugin/pom.xml28
-rw-r--r--maven-plugins/trunk/maven-tuscany-plugin/src/main/java/org/apache/tuscany/maven/plugin/TuscanyRunMojo.java2
2 files changed, 27 insertions, 3 deletions
diff --git a/maven-plugins/trunk/maven-tuscany-plugin/pom.xml b/maven-plugins/trunk/maven-tuscany-plugin/pom.xml
index fe39ea40a4..c33ba4f2f9 100644
--- a/maven-plugins/trunk/maven-tuscany-plugin/pom.xml
+++ b/maven-plugins/trunk/maven-tuscany-plugin/pom.xml
@@ -182,13 +182,37 @@
<dependency>
<groupId>org.apache.tuscany.sca</groupId>
<artifactId>tuscany-node-impl</artifactId>
- <version>2.0-M2</version>
+ <version>2.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.tuscany.sca</groupId>
<artifactId>tuscany-implementation-java-runtime</artifactId>
- <version>2.0-M2</version>
+ <version>2.0-SNAPSHOT</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-implementation-bpel-runtime</artifactId>
+ <version>2.0-SNAPSHOT</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-binding-jsonp-runtime</artifactId>
+ <version>2.0-SNAPSHOT</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-binding-rmi-runtime</artifactId>
+ <version>2.0-SNAPSHOT</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-binding-ws-axis2</artifactId>
+ <version>2.0-SNAPSHOT</version>
</dependency>
</dependencies>
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 1babaca0d6..c85b840aad 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
@@ -78,7 +78,7 @@ public class TuscanyRunMojo extends AbstractMojo {
Contribution contribution = getProjectContribution();
// TODO allow specifying dependent contributions
- Node node = NodeFactory.newInstance().createNode(null, contribution);
+ Node node = NodeFactory.newInstance().createNode(contribution);
node.start();
waitForShutdown(node, getLog());