Skip to content

Commit

Permalink
Gradle: fixed setting the group and version properties
Browse files Browse the repository at this point in the history
  • Loading branch information
hsz committed Apr 13, 2023
1 parent a786711 commit 13c0ba1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 13c0ba1

Please sign in to comment.