diff options
Diffstat (limited to 'sca-java-2.x/trunk')
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);
|