annotate gradlew @ 3:4ce973027b2a

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