bin.java-daemon.find-java.sh Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of windows-service-installer-common Show documentation
Show all versions of windows-service-installer-common Show documentation
Maven plugin to build installers with Windows service support.
The newest version!
#!/bin/bash
# find java
if [ "x$JAVA_HOME" = "x" ] ; then
RES="$( which java 2>/dev/null )"
else
RES="$JAVA_HOME"/bin/java
fi
# check results
if [ "x$RES" = "x" ] ; then
echo "Cannot find java executable, check JAVA_HOME, aborting" 1>&2
exit 1
else
echo "$RES"
fi
© 2015 - 2025 Weber Informatics LLC | Privacy Policy