Skip to content

Commit

Permalink
fix: wrong properties
Browse files Browse the repository at this point in the history
  • Loading branch information
radstevee committed Dec 12, 2024
1 parent 3027439 commit 57ec5de
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 @@ -4,12 +4,12 @@ plugins {
kotlin("jvm") version "2.1.0" apply false
}

fun prop(name: String) = property("version") as String
fun prop(name: String) = property(name) as String

version = prop("version")
group = prop("group")

subprojects {
version = prop("version")
group = prop("version")
group = prop("group")
}

0 comments on commit 57ec5de

Please sign in to comment.