File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
gradle/build-logic/src/main/kotlin/plugins Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -105,10 +105,7 @@ nmcp {
105105}
106106
107107signing {
108- setRequired {
109- logger.lifecycle(" >>>>> hasSigningKey : $hasSigningKey " )
110- hasSigningKey
111- }
108+ setRequired { hasSigningKey }
112109 useInMemoryPgpKeys(signingKeyId.orNull, signingKey.orNull, signingPassword.orNull)
113110 sign(publishing.publications)
114111 // useGpgCmd()
@@ -154,7 +151,7 @@ tasks {
154151 // For publishing kotlin native binaries
155152 withType<PublishToMavenRepository >().configureEach { mustRunAfter(withType<KotlinNativeLink >()) }
156153
157- withType<Sign >().configureEach { onlyIf { hasSigningKey } }
154+ // withType<Sign>().configureEach { onlyIf { hasSigningKey } }
158155
159156 // cyclonedxBom {
160157 // includeConfigs = listOf("runtimeClasspath")
You can’t perform that action at this time.
0 commit comments