gradlew.bat 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. @rem
  2. @rem SPDX-FileCopyrightText: 2015 the original author or authors.
  3. @rem SPDX-License-Identifier: Apache-2.0
  4. @rem
  5. @rem Copyright 2015 the original author or authors.
  6. @rem
  7. @rem Licensed under the Apache License, Version 2.0 (the "License");
  8. @rem you may not use this file except in compliance with the License.
  9. @rem You may obtain a copy of the License at
  10. @rem
  11. @rem https://www.apache.org/licenses/LICENSE-2.0
  12. @rem
  13. @rem Unless required by applicable law or agreed to in writing, software
  14. @rem distributed under the License is distributed on an "AS IS" BASIS,
  15. @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16. @rem See the License for the specific language governing permissions and
  17. @rem limitations under the License.
  18. @rem
  19. @if "%DEBUG%"=="" @echo off
  20. @rem ##########################################################################
  21. @rem
  22. @rem Gradle startup script for Windows
  23. @rem
  24. @rem ##########################################################################
  25. @rem Set local scope for the variables with windows NT shell
  26. if "%OS%"=="Windows_NT" setlocal
  27. set DIRNAME=%~dp0
  28. if "%DIRNAME%"=="" set DIRNAME=.
  29. @rem This is normally unused
  30. set APP_BASE_NAME=%~n0
  31. set APP_HOME=%DIRNAME%
  32. @rem Resolve any "." and ".." in APP_HOME to make it shorter.
  33. for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
  34. @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
  35. set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
  36. @rem Find java.exe
  37. if defined JAVA_HOME goto findJavaFromJavaHome
  38. set JAVA_EXE=java.exe
  39. %JAVA_EXE% -version >NUL 2>&1
  40. if %ERRORLEVEL% equ 0 goto execute
  41. echo. 1>&2
  42. echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
  43. echo. 1>&2
  44. echo Please set the JAVA_HOME variable in your environment to match the 1>&2
  45. echo location of your Java installation. 1>&2
  46. goto fail
  47. :findJavaFromJavaHome
  48. set JAVA_HOME=%JAVA_HOME:"=%
  49. set JAVA_EXE=%JAVA_HOME%/bin/java.exe
  50. if exist "%JAVA_EXE%" goto execute
  51. echo. 1>&2
  52. echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
  53. echo. 1>&2
  54. echo Please set the JAVA_HOME variable in your environment to match the 1>&2
  55. echo location of your Java installation. 1>&2
  56. goto fail
  57. :execute
  58. @rem Setup the command line
  59. set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
  60. @rem Execute Gradle
  61. "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
  62. :end
  63. @rem End local scope for the variables with windows NT shell
  64. if %ERRORLEVEL% equ 0 goto mainEnd
  65. :fail
  66. rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
  67. rem the _cmd.exe /c_ return code!
  68. set EXIT_CODE=%ERRORLEVEL%
  69. if %EXIT_CODE% equ 0 set EXIT_CODE=1
  70. if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
  71. exit /b %EXIT_CODE%
  72. :mainEnd
  73. if "%OS%"=="Windows_NT" endlocal
  74. :omega