annotate gradlew @ 35:80e46acfd82a version-0.4.6 tip

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