Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Renamed javaTarget to javaVersion #21721

Closed
wants to merge 9 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file modified .github/ci-prerequisites.sh
100755 → 100644
Empty file.
Empty file modified .github/docker-prune.sh
100755 → 100644
Empty file.
Empty file modified .github/filter-native-tests-json.sh
100755 → 100644
Empty file.
Empty file modified .github/quarkusbuilditemdoc.java
100755 → 100644
Empty file.
Empty file modified coverage-report/prepare.sh
100755 → 100644
Empty file.
Empty file modified devtools/gradle/gradlew
100755 → 100644
Empty file.
178 changes: 89 additions & 89 deletions devtools/gradle/gradlew.bat
Original file line number Diff line number Diff line change
@@ -1,89 +1,89 @@
@rem
@rem Copyright 2015 the original author or authors.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem
@rem https://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto execute
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto execute
echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:execute
@rem Setup the command line
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega
@rem
@rem Copyright 2015 the original author or authors.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem
@rem https://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem

@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################

@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal

set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%

@rem Resolve any "." and ".." in APP_HOME to make it shorter.
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi

@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"

@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome

set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto execute

echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.

goto fail

:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe

if exist "%JAVA_EXE%" goto execute

echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.

goto fail

:execute
@rem Setup the command line

set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar


@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*

:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd

:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1

:mainEnd
if "%OS%"=="Windows_NT" endlocal

:omega
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "2.0"
}
{
"version": "2.0"
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"IsEncrypted": false,
"Values": {
"AzureWebJobsStorage": "",
"FUNCTIONS_WORKER_RUNTIME": "java"
}
}
{
"IsEncrypted": false,
"Values": {
"AzureWebJobsStorage": "",
"FUNCTIONS_WORKER_RUNTIME": "java"
}
}
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified docs/sync-web-site.sh
100755 → 100644
Empty file.
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "2.0"
}
{
"version": "2.0"
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"IsEncrypted": false,
"Values": {
"AzureWebJobsStorage": "",
"FUNCTIONS_WORKER_RUNTIME": "java"
}
}
{
"IsEncrypted": false,
"Values": {
"AzureWebJobsStorage": "",
"FUNCTIONS_WORKER_RUNTIME": "java"
}
}
Empty file.
Empty file modified extensions/google-cloud-functions/deployment/pom.xml
100755 → 100644
Empty file.
Empty file.
Empty file modified extensions/google-cloud-functions/pom.xml
100755 → 100644
Empty file.
Empty file modified extensions/google-cloud-functions/runtime/pom.xml
100755 → 100644
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.hidden-dir/

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.hidden-symlink-dir/provider

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.hidden-symlink-dir/test-secret-key

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.hidden-symlink-dir/type
Empty file.
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
-----BEGIN CERTIFICATE-----
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
d5T2ko9LWvozen0sN9+L5OLVE82q3NHwJNm3
-----END CERTIFICATE-----
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.

This file was deleted.

Empty file.
Loading