We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1364e1d commit 503c254Copy full SHA for 503c254
build.gradle.kts
@@ -5,6 +5,7 @@ plugins {
5
`java-library`
6
`maven-publish`
7
jacoco
8
+ signing
9
id("org.sonarqube") version "4.4.1.3373"
10
id("org.cadixdev.licenser") version "0.6.1"
11
id("me.qoomon.git-versioning") version "6.4.3"
@@ -122,6 +123,15 @@ license {
122
123
exclude("**/*.xml")
124
}
125
126
+signing {
127
+ val signingInMemoryKey: String? by project // env.ORG_GRADLE_PROJECT_signingInMemoryKey
128
+ val signingInMemoryPassword: String? by project // env.ORG_GRADLE_PROJECT_signingInMemoryPassword
129
+ if (signingInMemoryKey != null) {
130
+ useInMemoryPgpKeys(signingInMemoryKey, signingInMemoryPassword)
131
+ sign(publishing.publications)
132
+ }
133
+}
134
+
135
publishing {
136
repositories {
137
maven {
0 commit comments