Skip to content

Commit

Permalink
Update Java JVM for AppImage. Resolves #514.
Browse files Browse the repository at this point in the history
  • Loading branch information
bengtmartensson committed Dec 28, 2023
1 parent 57ff86f commit 1c225a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.nameLowercase>irscrutinizer</project.nameLowercase>
<bundledjdk_url_sans_file>https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.5%2B10/</bundledjdk_url_sans_file>
<bundledjdk.linux>OpenJDK11U-jdk_x64_linux_hotspot_11.0.5_10.tar.gz</bundledjdk.linux>
<bundledjdk_url_sans_file>https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.1%2B12/</bundledjdk_url_sans_file>
<bundledjdk.linux>OpenJDK21U-jdk_x64_linux_hotspot_21.0.1_12.tar.gz</bundledjdk.linux>
<bundledjdk.windows>OpenJDK11U-jdk_x86-32_windows_hotspot_11.0.5_10.zip</bundledjdk.windows>
<bundledjdk.mac>OpenJDK11U-jdk_x64_mac_hotspot_11.0.5_10.tar.gz</bundledjdk.mac>
<inno_path>${basedir}/Inno_Setup_6/ISCC.exe</inno_path>
Expand Down
2 changes: 1 addition & 1 deletion tools/mkappimage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ rm -rf ${APPDIR}
if [ "x${JAVA_TAR_GZ}y" != "xy" -a -f "${JAVA_TAR_GZ}" ] ; then
tar xf ${JAVA_TAR_GZ}
JAVA_ROOT=`echo jdk*`
${JAVA_ROOT}/bin/jlink --no-header-files --no-man-pages --compress=2 --strip-debug --add-modules ${JAVA_MODULES} --output ${USR}
${JAVA_ROOT}/bin/jlink --no-header-files --no-man-pages --strip-debug --add-modules ${JAVA_MODULES} --output ${USR}
rm -rf ${JAVA_ROOT}
JAVA_PATH=\${APP_ROOT}/usr/bin/
fi
Expand Down

0 comments on commit 1c225a0

Please sign in to comment.