Skip to content

Commit

Permalink
Add signing plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
SgtSilvio committed Sep 11, 2023
1 parent 8b3589e commit f92c64d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
plugins {
`kotlin-dsl`
signing
alias(libs.plugins.pluginPublish)
alias(libs.plugins.defaults)
alias(libs.plugins.metadata)
Expand Down Expand Up @@ -48,6 +49,12 @@ gradlePlugin {
}
}

signing {
val signingKey: String? by project
val signingPassword: String? by project
useInMemoryPgpKeys(signingKey, signingPassword)
}

testing {
suites {
"test"(JvmTestSuite::class) {
Expand Down

0 comments on commit f92c64d

Please sign in to comment.