annotate gradlew.bat @ 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
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
1 @if "%DEBUG%" == "" @echo off
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
2 @rem ##########################################################################
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
3 @rem
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
4 @rem Gradle startup script for Windows
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
5 @rem
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
6 @rem ##########################################################################
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
7
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
8 @rem Set local scope for the variables with windows NT shell
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
9 if "%OS%"=="Windows_NT" setlocal
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
10
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
11 set DIRNAME=%~dp0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
12 if "%DIRNAME%" == "" set DIRNAME=.
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
13 set APP_BASE_NAME=%~n0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
14 set APP_HOME=%DIRNAME%
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
15
32
927f02ccc596 Update to Gradle 7.4.2
Kyle Miller <kyle.miller@mcoecn.org>
parents: 0
diff changeset
16 @rem 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: 0
diff changeset
17 set DEFAULT_JVM_OPTS="-Xmx64m"
927f02ccc596 Update to Gradle 7.4.2
Kyle Miller <kyle.miller@mcoecn.org>
parents: 0
diff changeset
18
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
19 @rem Find java.exe
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
20 if defined JAVA_HOME goto findJavaFromJavaHome
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
21
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
22 set JAVA_EXE=java.exe
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
23 %JAVA_EXE% -version >NUL 2>&1
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
24 if "%ERRORLEVEL%" == "0" goto init
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
25
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
26 echo.
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
27 echo 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
28 echo.
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
29 echo Please set the JAVA_HOME variable in your environment to match the
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
30 echo location of your Java installation.
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
31
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
32 goto fail
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
33
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
34 :findJavaFromJavaHome
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
35 set JAVA_HOME=%JAVA_HOME:"=%
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
36 set JAVA_EXE=%JAVA_HOME%/bin/java.exe
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
37
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
38 if exist "%JAVA_EXE%" goto init
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
39
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
40 echo.
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
41 echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
42 echo.
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
43 echo Please set the JAVA_HOME variable in your environment to match the
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
44 echo location of your Java installation.
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
45
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
46 goto fail
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
47
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
48 :init
32
927f02ccc596 Update to Gradle 7.4.2
Kyle Miller <kyle.miller@mcoecn.org>
parents: 0
diff changeset
49 @rem Get command-line arguments, handling Windows variants
0
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
50
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
51 if not "%OS%" == "Windows_NT" goto win9xME_args
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
52
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
53 :win9xME_args
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
54 @rem Slurp the command line arguments.
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
55 set CMD_LINE_ARGS=
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
56 set _SKIP=2
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
57
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
58 :win9xME_args_slurp
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
59 if "x%~1" == "x" goto execute
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
60
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
61 set CMD_LINE_ARGS=%*
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
62
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
63 :execute
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
64 @rem Setup the command line
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
65
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
66 set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
67
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
68 @rem Execute Gradle
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
69 "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
70
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
71 :end
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
72 @rem End local scope for the variables with windows NT shell
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
73 if "%ERRORLEVEL%"=="0" goto mainEnd
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
74
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
75 :fail
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
76 rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
77 rem the _cmd.exe /c_ return code!
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
78 if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
79 exit /b 1
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
80
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
81 :mainEnd
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
82 if "%OS%"=="Windows_NT" endlocal
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
83
c51874d4a5a7 initial ssdt plugin
smith@nwoca.org
parents:
diff changeset
84 :omega