Skip to content

Commit 73e75cc

Browse files
committed
fix(build): signArchives and shadowJar
1 parent 99ac6ab commit 73e75cc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@ subprojects {
7070
}
7171
}
7272
afterEvaluate {
73+
configure<SigningExtension> {
74+
sign(configurations["archives"])
75+
}
7376
tasks.findByName("shadowJar")?.also {
7477
tasks.named("assemble") { dependsOn(it) }
7578
tasks.named("signArchives") { dependsOn(it) }
7679
}
77-
configure<SigningExtension> {
78-
sign(configurations["archives"])
79-
}
8080
}
8181
}

0 commit comments

Comments
 (0)