Skip to content

Commit 87bfdd6

Browse files
Merge branch 'dev/feature' into feature/additional-module-standardization
2 parents 41f7bac + 09c944b commit 87bfdd6

File tree

62 files changed

+2701
-441
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+2701
-441
lines changed

.gitattributes

Lines changed: 47 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,51 @@
1-
# .gitattributes snippet to force users to use same line endings for project.
2-
#
3-
# Handle line endings automatically for files detected as text
4-
# and leave all files detected as binary untouched.
5-
* text eol=lf
1+
# Handle line endings automatically for files detected as text
2+
# and leave all files detected as binary untouched.
3+
* text eol=lf
64

7-
#
8-
# The above will handle all files NOT found below
9-
# https://help.github.com/articles/dealing-with-line-endings/
10-
# https://github.com/Danimoth/gitattributes/blob/master/Web.gitattributes
5+
# The above will handle all files NOT found below
6+
# https://help.github.com/articles/dealing-with-line-endings/
7+
# https://github.com/Danimoth/gitattributes/blob/master/Web.gitattributes
118

9+
# These files are text and should be normalized (Convert crlf => lf)
10+
*.php text
11+
*.css text
12+
*.js text
13+
*.json text
14+
*.htm text
15+
*.html text
16+
*.xml text
17+
*.txt text
18+
*.ini text
19+
*.inc text
20+
*.pl text
21+
*.rb text
22+
*.py text
23+
*.scm text
24+
*.sql text
25+
*.htaccess text
26+
*.sh text
27+
*.java text
1228

29+
# These files are Windows-specific and should retain crlf
30+
*.bat text eol=crlf
1331

14-
# These files are text and should be normalized (Convert crlf => lf)
15-
*.php text
16-
*.css text
17-
*.js text
18-
*.json text
19-
*.htm text
20-
*.html text
21-
*.xml text
22-
*.txt text
23-
*.ini text
24-
*.inc text
25-
*.pl text
26-
*.rb text
27-
*.py text
28-
*.scm text
29-
*.sql text
30-
.htaccess text
31-
*.sh text
32-
*.java text
33-
34-
# These files are binary and should be left untouched
35-
# (binary is a macro for -text -diff)
36-
*.png binary
37-
*.jpg binary
38-
*.jpeg binary
39-
*.gif binary
40-
*.ico binary
41-
*.mov binary
42-
*.mp4 binary
43-
*.mp3 binary
44-
*.flv binary
45-
*.fla binary
46-
*.swf binary
47-
*.gz binary
48-
*.zip binary
49-
*.7z binary
50-
*.ttf binary
51-
*.pyc binary
52-
*.jar binary
53-
*.class binary
32+
# These files are binary and should be left untouched
33+
# (binary is a macro for -text -diff)
34+
*.png binary
35+
*.jpg binary
36+
*.jpeg binary
37+
*.gif binary
38+
*.ico binary
39+
*.mov binary
40+
*.mp4 binary
41+
*.mp3 binary
42+
*.flv binary
43+
*.fla binary
44+
*.swf binary
45+
*.gz binary
46+
*.zip binary
47+
*.7z binary
48+
*.ttf binary
49+
*.pyc binary
50+
*.jar binary
51+
*.class binary

.github/workflows/checkstyle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
with:
1717
submodules: recursive
1818
- name: validate gradle wrapper
19-
uses: gradle/actions/wrapper-validation@v5
19+
uses: gradle/actions/wrapper-validation@v6
2020
- name: Set up JDK 21
2121
uses: actions/setup-java@v5
2222
with:

.github/workflows/java-21-builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
submodules: recursive
3030
- name: validate gradle wrapper
31-
uses: gradle/actions/wrapper-validation@v5
31+
uses: gradle/actions/wrapper-validation@v6
3232
- name: Set up JDK 21
3333
uses: actions/setup-java@v5
3434
with:

.github/workflows/junit-21-builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
submodules: recursive
3030
- name: validate gradle wrapper
31-
uses: gradle/actions/wrapper-validation@v5
31+
uses: gradle/actions/wrapper-validation@v6
3232
- name: Set up JDK 21
3333
uses: actions/setup-java@v5
3434
with:

.github/workflows/repo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
with:
1313
submodules: recursive
1414
- name: validate gradle wrapper
15-
uses: gradle/actions/wrapper-validation@v5
15+
uses: gradle/actions/wrapper-validation@v6
1616
- name: Set up JDK 21
1717
uses: actions/setup-java@v5
1818
with:

.github/workflows/update-gradle-wrapper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
sed -i "s|^distributionUrl=.*$|distributionUrl=${LATEST_GRADLE_DOWNLOAD_URL}|" gradle/wrapper/gradle-wrapper.properties
3535
./gradlew wrapper --gradle-version ${LATEST_GRADLE_VERSION}
3636
- name: Validate gradle wrapper
37-
uses: gradle/actions/wrapper-validation@v5
37+
uses: gradle/actions/wrapper-validation@v6
3838
- name: Build Skript and run test scripts
3939
run: ./gradlew clean quickTest
4040
- name: Commit and push changes

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import org.apache.tools.ant.filters.ReplaceTokens
44
import java.time.LocalTime
55

66
plugins {
7-
id 'com.gradleup.shadow' version '9.3.1'
7+
id 'com.gradleup.shadow' version '9.4.1'
88
id 'maven-publish'
99
id 'java'
1010
id 'checkstyle'

gradle/wrapper/gradle-wrapper.jar

2.73 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)