Skip to content

Commit 115b151

Browse files
committed
Bump to OneConfig A70
1 parent 5be1116 commit 115b151

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ plugins {
1616

1717
toolkitLoomHelper {
1818
useOneConfig {
19-
version = "1.0.0-alpha.58"
19+
version = "1.0.0-alpha.70"
2020
loaderVersion = "1.1.0-alpha.44"
2121

2222
usePolyMixin = true

gradle/wrapper/gradle-wrapper.properties

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

gradlew

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
# Darwin, MinGW, and NonStop.
5656
#
5757
# (3) This script is generated from the Groovy template
58-
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
58+
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
5959
# within the Gradle project.
6060
#
6161
# You can find Gradle at https://github.com/gradle/gradle/.

settings.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pluginManagement {
2424

2525
plugins {
2626
kotlin("jvm") version("2.0.0")
27-
id("dev.deftu.gradle.multiversion-root") version("2.22.0")
27+
id("dev.deftu.gradle.multiversion-root") version("2.27.1")
2828
}
2929
}
3030

src/main/java/org/polyfrost/example/client/ExampleClient.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public class ExampleClient {
88

99
public void initialize() {
1010
ExampleConfig.INSTANCE.preload();
11-
CommandManager.registerCommand(new ExampleCommand());
11+
CommandManager.register(new ExampleCommand());
1212
}
1313

1414
}

src/main/java/org/polyfrost/example/client/ExampleCommand.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* @see Command
1212
* @see ExampleClient
1313
*/
14-
@Command(value = ExampleConstants.ID, description = "Access the " + ExampleConstants.NAME + " GUI.")
14+
@Command(ExampleConstants.ID)
1515
public class ExampleCommand {
1616

1717
@Command

0 commit comments

Comments
 (0)