Skip to content

Commit

Permalink
修复了lite不自动下载依赖的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
ColdeZhang committed Oct 7, 2024
1 parent 9017402 commit 6f4d716
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ var libraries = listOf<String>()
libraries = libraries + "cn.lunadeer:MinecraftPluginUtils:1.3.10"

group = "cn.lunadeer"
version = "2.13.3-beta"
version = "2.13.4-beta"

java {
toolchain.languageVersion.set(JavaLanguageVersion.of(21))
Expand Down Expand Up @@ -69,7 +69,7 @@ allprojects {
libs += "$it,"
}
filter {
it.replace("libraries: []", libs.substring(0, libs.length - 1) + "]")
it.replace("libraries: [ ]", libs.substring(0, libs.length - 1) + "]")
}
}
}
Expand Down

0 comments on commit 6f4d716

Please sign in to comment.