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> {
124
124
125
125
signing {
126
126
if (signingKey.isPresent && signingPassword.isPresent) {
127
- logger.debug (" [${project.displayName} ] Signing is enabled" )
127
+ logger.info (" [${project.displayName} ] Signing is enabled" )
128
128
useInMemoryPgpKeys(signingKey.get(), signingPassword.get())
129
+ sign(publishing.publications[" maven" ])
130
+ } else {
131
+ logger.info(" [${project.displayName} ] No Signing keys found, skipping signing configuration" )
129
132
}
130
133
}
131
134
Original file line number Diff line number Diff line change 14
14
# limitations under the License.
15
15
#
16
16
17
- version =5.5.0 -SNAPSHOT
17
+ version =5.5.1 -SNAPSHOT
18
18
19
19
org.gradle.daemon =true
20
20
org.gradle.jvmargs =-Dfile.encoding=UTF-8 -Duser.country=US -Duser.language=en
You can’t perform that action at this time.
0 commit comments