File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ repositories {
2626}
2727
2828dependencies {
29- compileOnly(" com.arcaniax:HeadDatabase-API:1.3.1 " )
29+ compileOnly(" com.arcaniax:HeadDatabase-API:1.3.2 " )
3030}
3131```
3232
@@ -36,7 +36,7 @@ dependencies {
3636<dependency >
3737 <groupId >com.arcaniax</groupId >
3838 <artifactId >HeadDatabase-API</artifactId >
39- <version >1.3.1 </version >
39+ <version >1.3.2 </version >
4040 <scope >provided</scope >
4141</dependency >
4242```
Original file line number Diff line number Diff line change @@ -63,6 +63,12 @@ tasks {
6363 " implNote:a:Implementation Note:"
6464 )
6565 opt.links(" https://jd.papermc.io/paper/1.20/" )
66+ opt.noTimestamp()
67+ }
68+
69+ withType<AbstractArchiveTask >().configureEach {
70+ isPreserveFileTimestamps = false
71+ isReproducibleFileOrder = true
6672 }
6773}
6874
7278}
7379
7480signing {
75- if (! version.toString().endsWith(" -SNAPSHOT" )) {
81+ if (! project.hasProperty( " skip.signing " ) && ! version.toString().endsWith(" -SNAPSHOT" )) {
7682 val signingKey: String? by project
7783 val signingPassword: String? by project
7884 useInMemoryPgpKeys(signingKey, signingPassword)
You can’t perform that action at this time.
0 commit comments