We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca54e6c commit 449759dCopy full SHA for 449759d
1 file changed
cloud-fabric/build.gradle.kts
@@ -55,10 +55,11 @@ dependencies {
55
}
56
57
tasks {
58
- withType<ProcessResources>().configureEach() {
59
- inputs.property("version", project.version)
+ withType<ProcessResources>().configureEach {
+ val props = mapOf("version" to project.version)
60
+ inputs.properties(props)
61
filesMatching("fabric.mod.json") {
- expand("version" to project.version)
62
+ expand(props)
63
64
65
0 commit comments