Skip to content

Commit 21a1ce9

Browse files
committed
Replace kotlin delegated properties in build files
1 parent 1ac9aaa commit 21a1ce9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ gradlePlugin {
7777
}
7878

7979
signing {
80-
val signingKey: String? by project
81-
val signingPassword: String? by project
80+
val signingKey = providers.gradleProperty("signingKey").orNull
81+
val signingPassword = providers.gradleProperty("signingPassword").orNull
8282
useInMemoryPgpKeys(signingKey, signingPassword)
8383
}
8484

0 commit comments

Comments
 (0)