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 alias(libs.plugins.kover) // Gradle Kover Plugin
} }
group = properties("pluginGroup") group = properties("pluginGroup").get()
version = properties("pluginVersion") version = properties("pluginVersion").get()
// Configure project's dependencies // Configure project's dependencies
repositories { repositories {

Loading…
Cancel
Save