Skip to content

Commit

Permalink
Fix property casing in submodule convention plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
LostLuma committed Aug 9, 2024
1 parent fc59a43 commit 62e7ff7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build-logic/src/main/kotlin/kit_tunes.submodule.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ plugins {
id("kit_tunes.module")
}

val minecraft_version_min = project.property("minecraft_version_min") as String
val minecraft_version_max = project.property("minecraft_version_max") as String
val minecraftVersionMin = project.property("minecraft_version_min") as String
val minecraftVersionMax = project.property("minecraft_version_max") as String

configure<ModResourcesExtension>{
metadata {
Expand All @@ -14,6 +14,6 @@ configure<ModResourcesExtension>{
}

dependencies {
required("minecraft").version(minecraft_version_min, minecraft_version_max)
required("minecraft").version(minecraftVersionMin, minecraftVersionMax)
}
}

0 comments on commit 62e7ff7

Please sign in to comment.