Skip to content

Commit 2fb4f7c

Browse files
Merge branch 'main' into mixin
2 parents 40fd2f9 + 1245518 commit 2fb4f7c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
id 'java-library'
44
id 'maven-publish'
55
id 'com.gradleup.shadow' version '9.2.2'
6-
id 'xyz.wagyourtail.unimined' version '1.4.7-kappa'
6+
id 'xyz.wagyourtail.unimined' version '1.4.9-kappa'
77
id 'net.kyori.blossom' version '2.1.0'
88
}
99

@@ -64,15 +64,15 @@ unimined.minecraft {
6464

6565
cleanroom {
6666
if (propertyBool('use_access_transformer')) {
67-
accessTransformer "${rootProject.projectDir}/src/main/resources/" + propertyString('access_transformer_locations')
67+
accessTransformer "${rootProject.projectDir}/src/main/resources/${propertyString('access_transformer_locations')}"
6868
}
69-
loader "0.3.27-alpha"
69+
loader "0.3.31-alpha"
7070
runs.auth.username = minecraft_username
7171
runs.all {
7272
systemProperty("crl.dev.mixin", "${mod_id}.default.mixin.json,${mod_id}.mod.mixin.json")
7373
def extraArgs = propertyString('extra_jvm_args')
7474
if (extraArgs != null && !extraArgs.trim().isEmpty()) {
75-
jvmArgs += extraArgs.split("\\s+").toList()
75+
jvmArgs += extraArgs.split { "\\s+" }.toList()
7676
}
7777
if (propertyBool('enable_foundation_debug')) {
7878
systemProperty("foundation.dump", "true")

0 commit comments

Comments
 (0)