File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
buildSrc/src/main/kotlin/conventions Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -124,8 +124,11 @@ tasks.withType<Jar> {
124124
125125signing {
126126 if (signingKey.isPresent && signingPassword.isPresent) {
127- logger.debug (" [${project.displayName} ] Signing is enabled" )
127+ logger.info (" [${project.displayName} ] Signing is enabled" )
128128 useInMemoryPgpKeys(signingKey.get(), signingPassword.get())
129+ sign(publishing.publications[" maven" ])
130+ } else {
131+ logger.info(" [${project.displayName} ] No Signing keys found, skipping signing configuration" )
129132 }
130133}
131134
Original file line number Diff line number Diff line change 1414# limitations under the License.
1515#
1616
17- version =5.5.0 -SNAPSHOT
17+ version =5.5.1 -SNAPSHOT
1818
1919org.gradle.daemon =true
2020org.gradle.jvmargs =-Dfile.encoding=UTF-8 -Duser.country=US -Duser.language=en
You can’t perform that action at this time.
0 commit comments