aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2025-04-06 21:22:09 +0200
committerMatthias Sohn <matthias.sohn@sap.com>2025-04-06 21:22:09 +0200
commit46a6378789fdc75e5b00d8009b136462bdd97174 (patch)
tree89893c62f03b0b585de75e934deec493ab2e833a
parent79736e412e971cea1d034e18d784f1d4d12b3a0f (diff)
downloadjgit-stable-7.2.tar.gz
jgit-stable-7.2.zip
Fix package name of spring boot JarLauncher class in jgit.shstable-7.2
The class moved to this package in spring 3.2.0. See https://stackoverflow.com/questions/77279480/org-springframework-boot-loader-jarlauncher-cannot-be-found-but-org-springframe https://github.com/spring-projects/spring-boot/issues/37667 https://docs.spring.io/spring-boot/docs/3.2.0/reference/html/executable-jar.html#appendix.executable-jar.launching.manifest Bug: jgit-157 Change-Id: Ie1aaef2cd9443ee37b5ff6cd83fcd74e23b3e3fa
-rw-r--r--org.eclipse.jgit.pgm/jgit.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jgit.pgm/jgit.sh b/org.eclipse.jgit.pgm/jgit.sh
index a369220037..3f241e8a7a 100644
--- a/org.eclipse.jgit.pgm/jgit.sh
+++ b/org.eclipse.jgit.pgm/jgit.sh
@@ -110,9 +110,9 @@ then
LESS=${LESS:-FSRX}
export LESS
- "$java" $java_args org.springframework.boot.loader.JarLauncher "$@" | $use_pager
+ "$java" $java_args org.springframework.boot.loader.launch.JarLauncher "$@" | $use_pager
exit
else
- exec "$java" $java_args org.springframework.boot.loader.JarLauncher "$@"
+ exec "$java" $java_args org.springframework.boot.loader.launch.JarLauncher "$@"
exit 1
fi