diff options
author | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2010-10-26 16:24:48 +0000 |
---|---|---|
committer | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2010-10-26 16:24:48 +0000 |
commit | 867a4bf3670964687d23e5794d9dbd00768f7ba3 (patch) | |
tree | 4d49901f1110bb8009ef6f2730d5ff9f5dc23d94 | |
parent | 5ba881277a04bc8d2751b5e5f6634ba29ac3c073 (diff) |
Merge r1023826 Use jar file contributions so that the store tutorial works when running from the binary distribution
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1027631 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | sca-java-1.x/trunk/tutorials/store/domain/launch/LaunchWarehouseSpring.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sca-java-1.x/trunk/tutorials/store/domain/launch/LaunchWarehouseSpring.java b/sca-java-1.x/trunk/tutorials/store/domain/launch/LaunchWarehouseSpring.java index a07a4bf635..94d22478a4 100644 --- a/sca-java-1.x/trunk/tutorials/store/domain/launch/LaunchWarehouseSpring.java +++ b/sca-java-1.x/trunk/tutorials/store/domain/launch/LaunchWarehouseSpring.java @@ -38,8 +38,8 @@ public class LaunchWarehouseSpring { NodeLauncher launcher = NodeLauncher.newInstance(); SCANode node = launcher.createNode(null, - new Contribution("assets", "../assets/target/classes"), - new Contribution("warehouse", "../warehouse-spring/target/classes")); + new Contribution("assets", "../assets/target/tutorial-assets.jar"), + new Contribution("warehouse", "../warehouse-spring/target/tutorial-warehouse-spring.jar")); node.start(); System.out.println("Press a key to stop"); |