Skip to content

Commit e98eaf3

Browse files
Merge branch 'main' into scala
2 parents 3409880 + 1245518 commit e98eaf3

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
@@ -4,7 +4,7 @@ plugins {
44
id 'java-library'
55
id 'maven-publish'
66
id 'com.gradleup.shadow' version '9.2.2'
7-
id 'xyz.wagyourtail.unimined' version '1.4.7-kappa'
7+
id 'xyz.wagyourtail.unimined' version '1.4.9-kappa'
88
id 'net.kyori.blossom' version '2.1.0'
99
}
1010

@@ -68,14 +68,14 @@ unimined.minecraft {
6868

6969
cleanroom {
7070
if (propertyBool('use_access_transformer')) {
71-
accessTransformer "${rootProject.projectDir}/src/main/resources/" + propertyString('access_transformer_locations')
71+
accessTransformer "${rootProject.projectDir}/src/main/resources/${propertyString('access_transformer_locations')}"
7272
}
73-
loader "0.3.27-alpha"
73+
loader "0.3.31-alpha"
7474
runs.auth.username = minecraft_username
7575
runs.all {
7676
def extraArgs = propertyString('extra_jvm_args')
7777
if (extraArgs != null && !extraArgs.trim().isEmpty()) {
78-
jvmArgs += extraArgs.split("\\s+").toList()
78+
jvmArgs += extraArgs.split { "\\s+" }.toList()
7979
}
8080
if (propertyBool('enable_foundation_debug')) {
8181
systemProperty("foundation.dump", "true")

0 commit comments

Comments
 (0)