We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02b2f23 commit a8c4153Copy full SHA for a8c4153
1 file changed
build.gradle.kts
@@ -79,11 +79,16 @@ tasks {
79
80
register("copyJar") {
81
pluginsDir?.let {
82
- copy {
83
- from(shadowJar.get().archiveFile.get().asFile.absolutePath)
84
- into(it)
+ doLast {
+ copy {
+ from(shadowJar.get().archiveFile.get().asFile.absolutePath)
85
+ into(it)
86
+ }
87
}
88
89
+
90
+ outputs.upToDateWhen { false }
91
+ mustRunAfter(shadowJar)
92
93
94
jar {
0 commit comments