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

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 {