diff options
author | rfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68> | 2009-11-05 22:01:53 +0000 |
---|---|---|
committer | rfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68> | 2009-11-05 22:01:53 +0000 |
commit | 9151d7621ba86453c1af7df2dabd95bd2d285031 (patch) | |
tree | 3154bf2937f4b4429b11a481246821e78ca2d649 /sandbox | |
parent | 64043d8340291699140f7e4aabd893bc2fe63a1c (diff) |
Update the location pattern
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@833202 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox')
-rw-r--r-- | sandbox/travelsample/launchers/common/src/main/java/scatours/launcher/LauncherUtil.java | 2 |
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 7e7d0a95f7..828ee58bf3 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 @@ -41,7 +41,7 @@ public class LauncherUtil { File file = new File("../../contributions/" + name + "/target/classes"); if (!file.exists()) { // Try to use the target/<contribution>.jar that is generated by maven build - file = new File("../../contributions/" + name + "/target/" + name + ".jar"); + file = new File("../../contributions/" + name + "/target/scatours-contribution-" + name + ".jar"); if (!file.exists()) { // Try to use the contribution jar under the contributions folder of the distribution file = new File("../contributions/scatours-contribution-" + name + ".jar"); |