9 lines
183 B
Bash
Executable file
9 lines
183 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
echo DUMMY JAVA CALLED
|
|
echo args: "$@"
|
|
if [ "$2" = "-version" ]; then
|
|
# Maven 4 first calls java with -version to see if java command works
|
|
exit 0
|
|
fi
|
|
exit 42
|