Skip to content

Commit 5ff8949

Browse files
committed
Initial commit
0 parents  commit 5ff8949

File tree

19 files changed

+1265
-0
lines changed

19 files changed

+1265
-0
lines changed

.gitattributes

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#
2+
# https://help.github.com/articles/dealing-with-line-endings/
3+
#
4+
# Linux start script should use lf
5+
/gradlew text eol=lf
6+
7+
# These are Windows script files and should use crlf
8+
*.bat text eol=crlf
9+

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ko_fi: rk_01

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "gradle"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
- package-ecosystem: "github-actions"
8+
directory: "/"
9+
schedule:
10+
interval: "weekly"

.github/workflows/build.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: build
2+
on: [push, pull_request, workflow_dispatch]
3+
4+
jobs:
5+
build:
6+
runs-on: ubuntu-24.04
7+
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
8+
steps:
9+
- name: Checkout Repository
10+
uses: actions/checkout@v4
11+
- name: Validate Gradle Wrapper
12+
uses: gradle/actions/wrapper-validation@v4
13+
- name: Set up JDK 21
14+
uses: actions/setup-java@v4
15+
with:
16+
distribution: temurin
17+
java-version: 21
18+
check-latest: true
19+
- name: Build with Gradle
20+
run: ./gradlew build
21+
- name: Upload Artifacts to GitHub
22+
uses: actions/upload-artifact@v4
23+
with:
24+
name: Artifacts
25+
path: build/libs/
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: update-gradle-wrapper
2+
on:
3+
workflow_dispatch:
4+
schedule:
5+
- cron: "0 0 * * 0"
6+
7+
jobs:
8+
update-gradle-wrapper:
9+
runs-on: ubuntu-24.04
10+
steps:
11+
- name: Checkout Repository
12+
uses: actions/checkout@v4
13+
- name: Set up JDK 21
14+
uses: actions/setup-java@v4
15+
with:
16+
distribution: temurin
17+
java-version: 21
18+
check-latest: true
19+
- name: Update Gradle Wrapper
20+
uses: gradle-update/update-gradle-wrapper-action@v2

.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Compiled class file
2+
*.class
3+
4+
# Log file
5+
*.log
6+
*.log.gz
7+
8+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
9+
hs_err_pid*
10+
11+
# Project files
12+
/.idea/*
13+
!/.idea/copyright/
14+
/.gradle/
15+
/build/
16+
/out/
17+
/run/

.idea/copyright/GPL_3_0.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/profiles_settings.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)