Moved to Jakarta EE. Closes #7

This commit is contained in:
Erik C. Thauvin 2022-08-27 18:08:57 -07:00
parent c4edb4fd1f
commit 45af218f39
20 changed files with 224 additions and 139 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.