Skip to content

Commit bfd9bd8

Browse files
authored
Bump dependencies (#282)
2 parents f239588 + b0617e5 commit bfd9bd8

File tree

12 files changed

+18
-19
lines changed

12 files changed

+18
-19
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup Gradle
2020
uses: gradle/actions/setup-gradle@v4
2121
with:
22-
gradle-version: 8.14.3
22+
gradle-version: 9.3.1
2323
- name: Build TASmod with Gradle
2424
run: gradle build
2525
- name: Upload Test Report

.github/workflows/buildandupload.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Setup Gradle
2626
uses: gradle/actions/setup-gradle@v4
2727
with:
28-
gradle-version: 8.14.3
28+
gradle-version: 9.3.1
2929
- name: Build TASmod with Gradle
3030
run: gradle build
3131
- name: Upload artifact

.github/workflows/check_formatting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ jobs:
1919
- name: Setup Gradle
2020
uses: gradle/actions/setup-gradle@v4
2121
with:
22-
gradle-version: 8.14.3
22+
gradle-version: 9.3.1
2323
- name: Spotless Check
2424
run: gradle spotlessCheck

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup Gradle
1818
uses: gradle/actions/setup-gradle@v4
1919
with:
20-
gradle-version: 8.14.3
20+
gradle-version: 9.3.1
2121
- name: Setup workspace
2222
run: gradle build -Prelease=true
2323
- name: Upload assets

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ When ingame, hitting <kbd>F6</kbd> will show you options for customising your HU
6363
Author of the original prototype: [tr7zw](https://github.com/tr7zw/MC-TASmod)
6464
Main Mod Author: Scribble
6565

66-
Contributions by: famous1622, Pancake
66+
Contributions by: cittyinthecloud, forester302, Pancake
6767

6868
Initial Tickratechanger: [Guichaguri](https://github.com/Guichaguri/TickrateChanger)
6969
Tickrate 0 idea: [Cubitect](https://github.com/Cubitect/Cubitick)

build.gradle

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ plugins {
33
id "fabric-loom" version "${loom_version}"
44
// legacy looming (loom plugin improvements)
55
id "legacy-looming" version "${loom_version}"
6-
id "com.palantir.git-version" version "3.1.0"
7-
id "com.diffplug.spotless" version "7.0.3"
6+
id "com.palantir.git-version" version "4.2.0"
7+
id "com.diffplug.spotless" version "8.1.0"
88
}
99

1010

@@ -16,6 +16,10 @@ if(project.release=="false") {
1616
version = project.version+hash
1717
group = project.group
1818

19+
base {
20+
archivesName = project.artifact
21+
}
22+
1923
java {
2024
// compile for java 8
2125
sourceCompatibility = targetCompatibility = 8
@@ -56,7 +60,7 @@ dependencies {
5660
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
5761

5862
// testing dependencies
59-
testImplementation "org.junit.jupiter:junit-jupiter:5.13.3"
63+
testImplementation "org.junit.jupiter:junit-jupiter:5.14.1"
6064
testRuntimeOnly "org.junit.platform:junit-platform-launcher"
6165
}
6266

@@ -77,7 +81,6 @@ processResources {
7781

7882
// configure jar file
7983
jar {
80-
archivesBaseName = project.artifact
8184

8285
// pack embedded stuff
8386
from {

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ org.gradle.jvmargs=-Xmx3G
33

44
# Fabric properties
55
minecraft_version=1.12.2
6-
loader_version=0.17.2
7-
loom_version=1.11-SNAPSHOT
6+
loader_version=0.18.4
7+
loom_version=1.14-SNAPSHOT
88

99
# Mod properties
1010
mod_name=Tool-Assisted Speedrun Mod

gradle/wrapper/gradle-wrapper.jar

2.35 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-8.14.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

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

0 commit comments

Comments
 (0)