Gradle: fixed setting the group and version properties

This commit is contained in:
Jakub Chrzanowski 2023-04-13 18:09:22 +02:00
parent a7867111d6
commit 13c0ba1145
No known key found for this signature in database
GPG Key ID: C39095BFD769862E

View File

@ -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 {