Skip to content

Commit

Permalink
Move kff_version to gradle.properties
Browse files Browse the repository at this point in the history
  • Loading branch information
Erdragh committed Jan 26, 2024
1 parent 0e4e3a7 commit 63de2da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@ dependencies {
implementation("net.neoforged:neoforge:$neo_version")

// Dependency on KFF
implementation("thedarkcolour:kotlinforforge-neoforge:4.10.0")
val kff_version: String by project
implementation("thedarkcolour:kotlinforforge-neoforge:$kff_version")

// Example mod dependency with JEI
// The JEI API is declared for compile time use, while the full JEI artifact is used at runtime
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ neo_version_range=[20.4,)
# The loader version range can only use the major version of FML as bounds
loader_version_range=[2,)
# Mods using Kotlin entrypoints use KFF as a loader, which has different versioning
kff_version=4.10.0
kff_version_range=[4.10,)

## Mod Properties
Expand Down

0 comments on commit 63de2da

Please sign in to comment.