Skip to content

Commit a038dca

Browse files
committed
Initial commit
0 parents  commit a038dca

File tree

36 files changed

+2834
-0
lines changed

36 files changed

+2834
-0
lines changed

.gitattributes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
* text eol=lf
2+
*.bat text eol=crlf
3+
*.java text eol=lf
4+
*.gradle text eol=crlf
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Build File Utils
2+
on:
3+
push:
4+
branches: [master]
5+
paths:
6+
- file-utils/**
7+
- '!.github/workflows/**'
8+
- '!settings.gradle'
9+
permissions:
10+
contents: read
11+
jobs:
12+
build:
13+
uses: MinecraftForge/SharedActions/.github/workflows/gradle.yml@v0
14+
with:
15+
java: 21
16+
gradle_tasks: :file-utils:build
17+
project_path: file-utils
18+
secrets:
19+
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Build Hash Utils
2+
on:
3+
push:
4+
branches: [master]
5+
paths:
6+
- hash-utils/**
7+
- '!.github/workflows/**'
8+
- '!settings.gradle'
9+
permissions:
10+
contents: read
11+
jobs:
12+
build:
13+
uses: MinecraftForge/SharedActions/.github/workflows/gradle.yml@v0
14+
with:
15+
java: 21
16+
gradle_tasks: :hash-utils:build
17+
project_path: hash-utils
18+
secrets:
19+
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Build Log Utils
2+
on:
3+
push:
4+
branches: [master]
5+
paths:
6+
- log-utils/**
7+
- '!.github/workflows/**'
8+
- '!settings.gradle'
9+
permissions:
10+
contents: read
11+
jobs:
12+
build:
13+
uses: MinecraftForge/SharedActions/.github/workflows/gradle.yml@v0
14+
with:
15+
java: 21
16+
gradle_tasks: :log-utils:build
17+
project_path: log-utils
18+
secrets:
19+
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Build Data Utils
2+
on:
3+
push:
4+
branches: [master]
5+
paths:
6+
- json-data-utils/**
7+
- '!.github/workflows/**'
8+
- '!settings.gradle'
9+
permissions:
10+
contents: read
11+
jobs:
12+
build:
13+
uses: MinecraftForge/SharedActions/.github/workflows/gradle.yml@v0
14+
with:
15+
java: 21
16+
gradle_tasks: :json-data-utils:build
17+
project_path: json-data-utils
18+
secrets:
19+
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}

.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/**/.gradle/
2+
/**/.classpath
3+
/**/.project
4+
/**/.settings/
5+
/**/bin/
6+
/**/test/
7+
/**/build/
8+
/repo/
9+
/cache/
10+
/_old_mdks_/
11+
12+
# Tool Output - Jonathan uses the run directory
13+
/run/
14+
/output/
15+
16+
# Jonathan's IntelliJ Fuckery
17+
/.idea/

.gitversion

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[file]
2+
path = "file-utils"
3+
tag = "files"
4+
5+
[hash]
6+
path = "hash-utils"
7+
tag = "hash"
8+
9+
[log]
10+
path = "log-utils"
11+
tag = "log"
12+
13+
[data]
14+
path = "json-data-utils"
15+
tag = "json-data"

LICENSE-header.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Copyright (c) Forge Development LLC
2+
SPDX-License-Identifier: LGPL-2.1-only

0 commit comments

Comments
 (0)