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 {
105
105
}
106
106
107
107
signing {
108
- setRequired {
109
- logger.lifecycle(" >>>>> hasSigningKey : $hasSigningKey " )
110
- hasSigningKey
111
- }
108
+ setRequired { hasSigningKey }
112
109
useInMemoryPgpKeys(signingKeyId.orNull, signingKey.orNull, signingPassword.orNull)
113
110
sign(publishing.publications)
114
111
// useGpgCmd()
@@ -154,7 +151,7 @@ tasks {
154
151
// For publishing kotlin native binaries
155
152
withType<PublishToMavenRepository >().configureEach { mustRunAfter(withType<KotlinNativeLink >()) }
156
153
157
- withType<Sign >().configureEach { onlyIf { hasSigningKey } }
154
+ // withType<Sign>().configureEach { onlyIf { hasSigningKey } }
158
155
159
156
// cyclonedxBom {
160
157
// includeConfigs = listOf("runtimeClasspath")
You can’t perform that action at this time.
0 commit comments