gradlew.bat 3.0 KB

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