gradlew.bat 2.9 KB

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