Codebase list jtreg / ed8ded2
New upstream version 6.1+3 Emmanuel Bourg 1 year, 1 month ago
5 changed file(s) with 1 addition(s) and 280 deletion(s). Raw diff Collapse all Expand all
148148
149149 # Only use -source -target, to support legacy platforms, when building with JDK 8
150150 # Otherwise, use default values for $JDKHOME/bin/javac
151 SUPPORT_OLD_SOURCE_TARGET = $(shell $(JDKJAVAC) -version 2>&1 | grep '[8]' > /dev/null && echo true )
151 SUPPORT_OLD_SOURCE_TARGET = $(shell $(JDKJAVAC) -version 2>&1 | grep '1\.8\.' > /dev/null && echo true )
152152 ifneq ($(SUPPORT_OLD_SOURCE_TARGET),)
153153 OLD_JAVAC_SOURCE_TARGET = -source 1.2 -target 1.1
154154 AGENT_JAVAC_SOURCE_TARGET = -source 5 -target 5
plugins/idea/gradle/wrapper/gradle-wrapper.jar less more
Binary diff not shown
+0
-5
plugins/idea/gradle/wrapper/gradle-wrapper.properties less more
0 distributionBase=GRADLE_USER_HOME
1 distributionPath=wrapper/dists
2 distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-bin.zip
3 zipStoreBase=GRADLE_USER_HOME
4 zipStorePath=wrapper/dists
+0
-185
plugins/idea/gradlew less more
0 #!/usr/bin/env sh
1
2 #
3 # Copyright 2015 the original author or authors.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # https://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 #
17
18 ##############################################################################
19 ##
20 ## Gradle start up script for UN*X
21 ##
22 ##############################################################################
23
24 # Attempt to set APP_HOME
25 # Resolve links: $0 may be a link
26 PRG="$0"
27 # Need this for relative symlinks.
28 while [ -h "$PRG" ] ; do
29 ls=`ls -ld "$PRG"`
30 link=`expr "$ls" : '.*-> \(.*\)$'`
31 if expr "$link" : '/.*' > /dev/null; then
32 PRG="$link"
33 else
34 PRG=`dirname "$PRG"`"/$link"
35 fi
36 done
37 SAVED="`pwd`"
38 cd "`dirname \"$PRG\"`/" >/dev/null
39 APP_HOME="`pwd -P`"
40 cd "$SAVED" >/dev/null
41
42 APP_NAME="Gradle"
43 APP_BASE_NAME=`basename "$0"`
44
45 # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
46 DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
47
48 # Use the maximum available, or set MAX_FD != -1 to use that value.
49 MAX_FD="maximum"
50
51 warn () {
52 echo "$*"
53 }
54
55 die () {
56 echo
57 echo "$*"
58 echo
59 exit 1
60 }
61
62 # OS specific support (must be 'true' or 'false').
63 cygwin=false
64 msys=false
65 darwin=false
66 nonstop=false
67 case "`uname`" in
68 CYGWIN* )
69 cygwin=true
70 ;;
71 Darwin* )
72 darwin=true
73 ;;
74 MINGW* )
75 msys=true
76 ;;
77 NONSTOP* )
78 nonstop=true
79 ;;
80 esac
81
82 CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
83
84
85 # Determine the Java command to use to start the JVM.
86 if [ -n "$JAVA_HOME" ] ; then
87 if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
88 # IBM's JDK on AIX uses strange locations for the executables
89 JAVACMD="$JAVA_HOME/jre/sh/java"
90 else
91 JAVACMD="$JAVA_HOME/bin/java"
92 fi
93 if [ ! -x "$JAVACMD" ] ; then
94 die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
95
96 Please set the JAVA_HOME variable in your environment to match the
97 location of your Java installation."
98 fi
99 else
100 JAVACMD="java"
101 which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
102
103 Please set the JAVA_HOME variable in your environment to match the
104 location of your Java installation."
105 fi
106
107 # Increase the maximum file descriptors if we can.
108 if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
109 MAX_FD_LIMIT=`ulimit -H -n`
110 if [ $? -eq 0 ] ; then
111 if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
112 MAX_FD="$MAX_FD_LIMIT"
113 fi
114 ulimit -n $MAX_FD
115 if [ $? -ne 0 ] ; then
116 warn "Could not set maximum file descriptor limit: $MAX_FD"
117 fi
118 else
119 warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
120 fi
121 fi
122
123 # For Darwin, add options to specify how the application appears in the dock
124 if $darwin; then
125 GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
126 fi
127
128 # For Cygwin or MSYS, switch paths to Windows format before running java
129 if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
130 APP_HOME=`cygpath --path --mixed "$APP_HOME"`
131 CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
132
133 JAVACMD=`cygpath --unix "$JAVACMD"`
134
135 # We build the pattern for arguments to be converted via cygpath
136 ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
137 SEP=""
138 for dir in $ROOTDIRSRAW ; do
139 ROOTDIRS="$ROOTDIRS$SEP$dir"
140 SEP="|"
141 done
142 OURCYGPATTERN="(^($ROOTDIRS))"
143 # Add a user-defined pattern to the cygpath arguments
144 if [ "$GRADLE_CYGPATTERN" != "" ] ; then
145 OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
146 fi
147 # Now convert the arguments - kludge to limit ourselves to /bin/sh
148 i=0
149 for arg in "$@" ; do
150 CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
151 CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
152
153 if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
154 eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
155 else
156 eval `echo args$i`="\"$arg\""
157 fi
158 i=`expr $i + 1`
159 done
160 case $i in
161 0) set -- ;;
162 1) set -- "$args0" ;;
163 2) set -- "$args0" "$args1" ;;
164 3) set -- "$args0" "$args1" "$args2" ;;
165 4) set -- "$args0" "$args1" "$args2" "$args3" ;;
166 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
167 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
168 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
169 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
170 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
171 esac
172 fi
173
174 # Escape application args
175 save () {
176 for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
177 echo " "
178 }
179 APP_ARGS=`save "$@"`
180
181 # Collect all arguments for the java command, following the shell quoting and substitution rules
182 eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
183
184 exec "$JAVACMD" "$@"
+0
-89
plugins/idea/gradlew.bat less more
0 @rem
1 @rem Copyright 2015 the original author or authors.
2 @rem
3 @rem Licensed under the Apache License, Version 2.0 (the "License");
4 @rem you may not use this file except in compliance with the License.
5 @rem You may obtain a copy of the License at
6 @rem
7 @rem https://www.apache.org/licenses/LICENSE-2.0
8 @rem
9 @rem Unless required by applicable law or agreed to in writing, software
10 @rem distributed under the License is distributed on an "AS IS" BASIS,
11 @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 @rem See the License for the specific language governing permissions and
13 @rem limitations under the License.
14 @rem
15
16 @if "%DEBUG%" == "" @echo off
17 @rem ##########################################################################
18 @rem
19 @rem Gradle startup script for Windows
20 @rem
21 @rem ##########################################################################
22
23 @rem Set local scope for the variables with windows NT shell
24 if "%OS%"=="Windows_NT" setlocal
25
26 set DIRNAME=%~dp0
27 if "%DIRNAME%" == "" set DIRNAME=.
28 set APP_BASE_NAME=%~n0
29 set APP_HOME=%DIRNAME%
30
31 @rem Resolve any "." and ".." in APP_HOME to make it shorter.
32 for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
33
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
37 @rem Find java.exe
38 if defined JAVA_HOME goto findJavaFromJavaHome
39
40 set JAVA_EXE=java.exe
41 %JAVA_EXE% -version >NUL 2>&1
42 if "%ERRORLEVEL%" == "0" goto execute
43
44 echo.
45 echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
46 echo.
47 echo Please set the JAVA_HOME variable in your environment to match the
48 echo location of your Java installation.
49
50 goto fail
51
52 :findJavaFromJavaHome
53 set JAVA_HOME=%JAVA_HOME:"=%
54 set JAVA_EXE=%JAVA_HOME%/bin/java.exe
55
56 if exist "%JAVA_EXE%" goto execute
57
58 echo.
59 echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
60 echo.
61 echo Please set the JAVA_HOME variable in your environment to match the
62 echo location of your Java installation.
63
64 goto fail
65
66 :execute
67 @rem Setup the command line
68
69 set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
70
71
72 @rem Execute Gradle
73 "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
74
75 :end
76 @rem End local scope for the variables with windows NT shell
77 if "%ERRORLEVEL%"=="0" goto mainEnd
78
79 :fail
80 rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
81 rem the _cmd.exe /c_ return code!
82 if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
83 exit /b 1
84
85 :mainEnd
86 if "%OS%"=="Windows_NT" endlocal
87
88 :omega