File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,12 @@ import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
22import org.jetbrains.dokka.gradle.DokkaTask
33import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
44
5- val ossrhUsername: String? by ext
6- val ossrhPassword: String? by ext
5+ val ossrhUsername: String? by project
6+ val ossrhPassword: String? by project
7+
8+ val signingKeyId: String? by project // must be the last 8 digits of the key
9+ val signingKey: String? by project
10+ val signingPassword: String? by project
711
812description = " A library for interacting with blocking JDBC drivers using Kotlin Coroutines."
913
@@ -138,6 +142,6 @@ publishing {
138142}
139143
140144signing {
141- useGpgCmd( )
145+ useInMemoryPgpKeys(signingKeyId, signingKey, signingPassword )
142146 sign(publishing.publications)
143147}
You can’t perform that action at this time.
0 commit comments