initial commit

This commit is contained in:
Tretzi
2026-05-04 20:30:54 -05:00
commit 7ed43fab5e
24 changed files with 1385 additions and 0 deletions

19
gradlew vendored Executable file
View File

@@ -0,0 +1,19 @@
#!/usr/bin/env sh
set -eu
ROOT_DIR="$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)"
PROPS="$ROOT_DIR/gradle/wrapper/gradle-wrapper.properties"
DIST_URL=$(grep '^distributionUrl=' "$PROPS" | cut -d= -f2- | sed 's#\\:#:#g')
TMP_ZIP="/tmp/gradle-dist.zip"
TMP_DIR="/tmp/gradle-dist"
rm -rf "$TMP_DIR" "$TMP_ZIP"
mkdir -p "$TMP_DIR"
curl -fsSL "$DIST_URL" -o "$TMP_ZIP"
unzip -q "$TMP_ZIP" -d "$TMP_DIR"
GRADLE_BIN=$(find "$TMP_DIR" -type f -path '*/bin/gradle' | head -1)
if [ -z "$GRADLE_BIN" ]; then
echo "Could not locate gradle binary in distribution" >&2
exit 1
fi
exec "$GRADLE_BIN" "$@"