Updating dependencies and docker containers to current versions

See #1157
This commit is contained in:
Patrick Baumgartner 2023-03-10 13:59:47 +00:00 committed by Dave Syer
parent cc4667122d
commit 0962ed7e8f
20 changed files with 245 additions and 150 deletions

6
gradlew vendored
View file

@ -205,6 +205,12 @@ set -- \
org.gradle.wrapper.GradleWrapperMain \
"$@"
# Stop when "xargs" is not available.
if ! command -v xargs >/dev/null 2>&1
then
die "xargs is not available"
fi
# Use "xargs" to parse quoted args.
#
# With -n1 it outputs one arg per line, with the quotes and backslashes removed.