Skip to content

Commit

Permalink
Merge branch '1.21' into 1.21.2
Browse files Browse the repository at this point in the history
  • Loading branch information
LambdAurora committed Oct 26, 2024
2 parents ced5696 + 8d5c13c commit 9b79807
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import net.darkhax.curseforgegradle.TaskPublishCurseForge
plugins {
id("lambdynamiclights")
`maven-publish`
id("com.github.johnrengelman.shadow").version("8.1.1")
id("com.gradleup.shadow").version("8.3.3")
id("com.modrinth.minotaur").version("2.+")
id("net.darkhax.curseforgegradle").version("1.1.+")
}
Expand Down Expand Up @@ -67,10 +67,11 @@ dependencies {
}

tasks.processResources {
inputs.property("version", project.version)
val version = project.version
inputs.property("version", version)

filesMatching("fabric.mod.json") {
expand("version" to project.version)
expand("version" to version)
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ modmenu = "12.0.0-beta.1"
nightconfig = "3.8.1"

# Gradle
gradle-licenser = "1.2.+"
gradle-licenser = "2.0.+"
gradle-loom = "1.8.+"
mappingio = "0.6.1"

Expand Down

0 comments on commit 9b79807

Please sign in to comment.