diff options
Diffstat (limited to '')
-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"); |