diff options
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 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."); } |