Gradle: fixed setting the `group` and `version` properties

pull/365/head v1.6.0
Jakub Chrzanowski 1 year ago
parent a7867111d6
commit 13c0ba1145
No known key found for this signature in database
GPG Key ID: C39095BFD769862E

@ -13,8 +13,8 @@ plugins {
alias(libs.plugins.kover) // Gradle Kover Plugin
}
group = properties("pluginGroup")
version = properties("pluginVersion")
group = properties("pluginGroup").get()
version = properties("pluginVersion").get()
// Configure project's dependencies
repositories {

Loading…
Cancel
Save