diff --git a/.kokoro/tests/run_test_java.sh b/.kokoro/tests/run_test_java.sh index 9d427468238..fc0a7a93967 100755 --- a/.kokoro/tests/run_test_java.sh +++ b/.kokoro/tests/run_test_java.sh @@ -20,7 +20,7 @@ SCRIPT_DIR="$(dirname $0)/" # Fail the tests if no Java version was found. POM_JAVA=$(grep -oP '(?<=).*?(?=)' pom.xml) -ALLOWED_VERSIONS=("1.8" "11" "17" "21") +ALLOWED_VERSIONS=("1.8" "11" "17" "21" "25") # shellcheck disable=SC2199 # shellcheck disable=SC2076 if [[ "$POM_JAVA" = "" ]] || [[ ! " ${ALLOWED_VERSIONS[*]} " =~ " ${POM_JAVA} " ]]; then