annotate gradlew @ 29:e531fc141b17

update gradle version
author smith@nwoca.org
date Tue, 04 Dec 2018 19:48:59 +0000
parents 0a2819478262
children 927f02ccc596
rev   line source
12
0a2819478262 update gradle wrapper
smith@nwoca.org
parents: 0
diff changeset
1 #!/usr/bin/env bash
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
2
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
3 ##############################################################################
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
4 ##
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
5 ## Gradle start up script for UN*X
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
6 ##
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
7 ##############################################################################
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
8
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
9 # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
10 DEFAULT_JVM_OPTS=""
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
11
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
12 APP_NAME="Gradle"
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
13 APP_BASE_NAME=`basename "$0"`
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
14
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
15 # Use the maximum available, or set MAX_FD != -1 to use that value.
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
16 MAX_FD="maximum"
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
17
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
18 warn ( ) {
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
19 echo "$*"
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
20 }
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
21
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
22 die ( ) {
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
23 echo
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
24 echo "$*"
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
25 echo
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
26 exit 1
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
27 }
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
28
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
29 # OS specific support (must be 'true' or 'false').
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
30 cygwin=false
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
31 msys=false
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
32 darwin=false
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
33 case "`uname`" in
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
34 CYGWIN* )
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
35 cygwin=true
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
36 ;;
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
37 Darwin* )
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
38 darwin=true
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
39 ;;
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
40 MINGW* )
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
41 msys=true
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
42 ;;
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
43 esac
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
44
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
45 # Attempt to set APP_HOME
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
46 # Resolve links: $0 may be a link
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
47 PRG="$0"
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
48 # Need this for relative symlinks.
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
49 while [ -h "$PRG" ] ; do
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
50 ls=`ls -ld "$PRG"`
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
51 link=`expr "$ls" : '.*-> \(.*\)$'`
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
52 if expr "$link" : '/.*' > /dev/null; then
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
53 PRG="$link"
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
54 else
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
55 PRG=`dirname "$PRG"`"/$link"
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
56 fi
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
57 done
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
58 SAVED="`pwd`"
29
e531fc141b17 update gradle version
smith@nwoca.org
parents: 12
diff changeset
59 cd "`dirname \"$PRG\"`/" >/dev/null
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
60 APP_HOME="`pwd -P`"
29
e531fc141b17 update gradle version
smith@nwoca.org
parents: 12
diff changeset
61 cd "$SAVED" >/dev/null
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
62
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
63 CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
64
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
65 # Determine the Java command to use to start the JVM.
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
66 if [ -n "$JAVA_HOME" ] ; then
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
67 if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
68 # IBM's JDK on AIX uses strange locations for the executables
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
69 JAVACMD="$JAVA_HOME/jre/sh/java"
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
70 else
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
71 JAVACMD="$JAVA_HOME/bin/java"
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
72 fi
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
73 if [ ! -x "$JAVACMD" ] ; then
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
74 die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
75
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
76 Please set the JAVA_HOME variable in your environment to match the
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
77 location of your Java installation."
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
78 fi
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
79 else
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
80 JAVACMD="java"
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
81 which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
82
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
83 Please set the JAVA_HOME variable in your environment to match the
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
84 location of your Java installation."
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
85 fi
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
86
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
87 # Increase the maximum file descriptors if we can.
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
88 if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
89 MAX_FD_LIMIT=`ulimit -H -n`
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
90 if [ $? -eq 0 ] ; then
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
91 if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
92 MAX_FD="$MAX_FD_LIMIT"
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
93 fi
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
94 ulimit -n $MAX_FD
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
95 if [ $? -ne 0 ] ; then
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
96 warn "Could not set maximum file descriptor limit: $MAX_FD"
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
97 fi
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
98 else
12
0a2819478262 update gradle wrapper
smith@nwoca.org
parents: 0
diff changeset
99 warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
100 fi
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
101 fi
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
102
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
103 # For Darwin, add options to specify how the application appears in the dock
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
104 if $darwin; then
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
105 GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
106 fi
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
107
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
108 # For Cygwin, switch paths to Windows format before running java
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
109 if $cygwin ; then
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
110 APP_HOME=`cygpath --path --mixed "$APP_HOME"`
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
111 CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
29
e531fc141b17 update gradle version
smith@nwoca.org
parents: 12
diff changeset
112 JAVACMD=`cygpath --unix "$JAVACMD"`
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
113
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
114 # We build the pattern for arguments to be converted via cygpath
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
115 ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
116 SEP=""
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
117 for dir in $ROOTDIRSRAW ; do
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
118 ROOTDIRS="$ROOTDIRS$SEP$dir"
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
119 SEP="|"
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
120 done
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
121 OURCYGPATTERN="(^($ROOTDIRS))"
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
122 # Add a user-defined pattern to the cygpath arguments
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
123 if [ "$GRADLE_CYGPATTERN" != "" ] ; then
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
124 OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
125 fi
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
126 # Now convert the arguments - kludge to limit ourselves to /bin/sh
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
127 i=0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
128 for arg in "$@" ; do
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
129 CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
130 CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
131
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
132 if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
133 eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
134 else
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
135 eval `echo args$i`="\"$arg\""
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
136 fi
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
137 i=$((i+1))
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
138 done
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
139 case $i in
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
140 (0) set -- ;;
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
141 (1) set -- "$args0" ;;
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
142 (2) set -- "$args0" "$args1" ;;
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
143 (3) set -- "$args0" "$args1" "$args2" ;;
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
144 (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
145 (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
146 (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
147 (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
148 (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
149 (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
150 esac
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
151 fi
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
152
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
153 # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
154 function splitJvmOpts() {
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
155 JVM_OPTS=("$@")
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
156 }
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
157 eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
158 JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
159
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
160 exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"