summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-01-14 12:09:28 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-01-14 12:09:28 +0000
commite056d1c7c50125eb79d436afa92f9617aded5974 (patch)
tree058916561c0333eb9dea83cda0da709f57a73a78 /sca-java-2.x/trunk
parentf8b1ceadc8f5f315cfbda165fdd09dfdcc84c2d3 (diff)
Get the Java SE based client working talking to remote domains
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@899174 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk')
-rw-r--r--sca-java-2.x/trunk/distribution/tomcat/testing/helloworld-scaclient-javase/pom.xml5
-rw-r--r--sca-java-2.x/trunk/distribution/tomcat/testing/helloworld-scaclient-javase/src/main/java/testing/HelloworldClient.java2
2 files changed, 3 insertions, 4 deletions
diff --git a/sca-java-2.x/trunk/distribution/tomcat/testing/helloworld-scaclient-javase/pom.xml b/sca-java-2.x/trunk/distribution/tomcat/testing/helloworld-scaclient-javase/pom.xml
index 3e64278dbb..39c6bb2b59 100644
--- a/sca-java-2.x/trunk/distribution/tomcat/testing/helloworld-scaclient-javase/pom.xml
+++ b/sca-java-2.x/trunk/distribution/tomcat/testing/helloworld-scaclient-javase/pom.xml
@@ -31,10 +31,9 @@
<dependencies>
<dependency>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-base</artifactId>
+ <groupId>org.apache.tuscany.sca.shades</groupId>
+ <artifactId>tuscany-base-nodep</artifactId>
<version>2.0-SNAPSHOT</version>
- <scope>provided</scope>
</dependency>
</dependencies>
diff --git a/sca-java-2.x/trunk/distribution/tomcat/testing/helloworld-scaclient-javase/src/main/java/testing/HelloworldClient.java b/sca-java-2.x/trunk/distribution/tomcat/testing/helloworld-scaclient-javase/src/main/java/testing/HelloworldClient.java
index 1a874909f3..8d456efc30 100644
--- a/sca-java-2.x/trunk/distribution/tomcat/testing/helloworld-scaclient-javase/src/main/java/testing/HelloworldClient.java
+++ b/sca-java-2.x/trunk/distribution/tomcat/testing/helloworld-scaclient-javase/src/main/java/testing/HelloworldClient.java
@@ -33,7 +33,7 @@ public class HelloworldClient {
if (args.length > 0) {
domainURI = URI.create(args[0]);
} else {
- domainURI = URI.create("tribes:default");
+ domainURI = URI.create("tuscany:default");
}
SCAClientFactory factory = SCAClientFactory.newInstance(domainURI);