gradlew 5.4 KB

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