mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-27 23:10:16 +01:00
Bump Paperclip and fix configuration cache issue
This commit is contained in:
parent
bd2bbe7bf4
commit
08ac01db8f
2 changed files with 3 additions and 2 deletions
|
@ -49,7 +49,7 @@ dependencies {
|
|||
paramMappings("net.fabricmc:yarn:1.18-rc3+build.1:mergedv2")
|
||||
remapper("net.fabricmc:tiny-remapper:0.7.0:fat")
|
||||
decompiler("net.minecraftforge:forgeflower:1.5.498.22")
|
||||
paperclip("io.papermc:paperclip:3.0.0-SNAPSHOT")
|
||||
paperclip("io.papermc:paperclip:3.0.1")
|
||||
}
|
||||
|
||||
paperweight {
|
||||
|
|
|
@ -72,8 +72,9 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||
+ inputs.property("version", project.version)
|
||||
+ val pomProps = layout.buildDirectory.file("pom.properties")
|
||||
+ outputs.file(pomProps)
|
||||
+ val projectVersion = project.version
|
||||
+ doLast {
|
||||
+ pomProps.get().asFile.writeText("version=${project.version}")
|
||||
+ pomProps.get().asFile.writeText("version=$projectVersion")
|
||||
+ }
|
||||
+}
|
||||
+
|
||||
|
|
Loading…
Reference in a new issue