mirror of
https://github.com/badvision/jace.git
synced 2025-01-04 10:31:34 +00:00
Test and Display if maven isn't installed
This commit is contained in:
parent
ddc41ec84e
commit
8525330d53
16
build.sh
16
build.sh
@ -29,6 +29,15 @@
|
|||||||
#
|
#
|
||||||
# mvn -version
|
# mvn -version
|
||||||
#
|
#
|
||||||
|
# NOTE: If this command returns:
|
||||||
|
#
|
||||||
|
# -bash: mvn: command not found
|
||||||
|
#
|
||||||
|
# You either didn't install maven or it isn't in your path
|
||||||
|
# i.e.
|
||||||
|
# which mvn
|
||||||
|
# /usr/local/bin/mvn
|
||||||
|
#
|
||||||
# 2. Check which version of the Java JRE is installed:
|
# 2. Check which version of the Java JRE is installed:
|
||||||
#
|
#
|
||||||
# java -version
|
# java -version
|
||||||
@ -88,6 +97,13 @@
|
|||||||
#
|
#
|
||||||
# As the source code is using Java 1.8 langauge features.
|
# As the source code is using Java 1.8 langauge features.
|
||||||
|
|
||||||
|
if [[ -z "$(which mvn)" ]]; then
|
||||||
|
echo "ERROR: Maven isn't installed"
|
||||||
|
echo "Install via:"
|
||||||
|
echo " brew install maven"
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
if [[ -z "$JAVA_HOME" ]]; then
|
if [[ -z "$JAVA_HOME" ]]; then
|
||||||
echo "WARNING: JAVA_HOME was not set"
|
echo "WARNING: JAVA_HOME was not set"
|
||||||
echo "... Defaulting to Java 1.8..."
|
echo "... Defaulting to Java 1.8..."
|
||||||
|
Loading…
Reference in New Issue
Block a user