summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-04-14 13:22:32 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-04-14 13:22:32 +0000
commita4ec5e3b69ac4ac55e92329767b77a5e3b31a337 (patch)
tree965420754541a500e64699d0d9c797f6919085e0
parent4311b389378dbc2c7d077bb7b09d24989cefa5ba (diff)
Add exec plugin so you can run the sample with mvn exec:java
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@933941 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--sca-java-2.x/trunk/samples/helloworld-scaclient/pom.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/sca-java-2.x/trunk/samples/helloworld-scaclient/pom.xml b/sca-java-2.x/trunk/samples/helloworld-scaclient/pom.xml
index 1079078a8a..9281fca91d 100644
--- a/sca-java-2.x/trunk/samples/helloworld-scaclient/pom.xml
+++ b/sca-java-2.x/trunk/samples/helloworld-scaclient/pom.xml
@@ -61,6 +61,21 @@
</archive>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>exec-maven-plugin</artifactId>
+ <version>1.1.1</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>java</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <mainClass>sample.HelloworldSCAClient</mainClass>
+ </configuration>
+ </plugin>
</plugins>
</build>
</project>