summaryrefslogtreecommitdiffstats
path: root/sandbox/travelsample
diff options
context:
space:
mode:
authorrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2009-11-05 22:01:05 +0000
committerrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2009-11-05 22:01:05 +0000
commit64043d8340291699140f7e4aabd893bc2fe63a1c (patch)
tree5d68fa54152163e95056b602c75cffb12c87fa84 /sandbox/travelsample
parent8c049462ff6387d8c3f69f4e42a4c4b36e38a90c (diff)
Update the location pattern
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@833201 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/travelsample')
-rw-r--r--sandbox/travelsample/launchers/common/src/main/java/scatours/launcher/LauncherUtil.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sandbox/travelsample/launchers/common/src/main/java/scatours/launcher/LauncherUtil.java b/sandbox/travelsample/launchers/common/src/main/java/scatours/launcher/LauncherUtil.java
index c73c90a14b..7e7d0a95f7 100644
--- a/sandbox/travelsample/launchers/common/src/main/java/scatours/launcher/LauncherUtil.java
+++ b/sandbox/travelsample/launchers/common/src/main/java/scatours/launcher/LauncherUtil.java
@@ -44,7 +44,7 @@ public class LauncherUtil {
file = new File("../../contributions/" + name + "/target/" + name + ".jar");
if (!file.exists()) {
// Try to use the contribution jar under the contributions folder of the distribution
- file = new File("../contributions/" + name + ".jar");
+ file = new File("../contributions/scatours-contribution-" + name + ".jar");
if (!file.exists()) {
throw new IllegalArgumentException("Contribution " + name + " cannot be located.");
}