Skip to content

Commit

Permalink
Update to LegacyLauncher 1.17.1, fix deprecations (#207)
Browse files Browse the repository at this point in the history
* Update LegacyLauncher to 1.17.1

* fix gradle 8 deprecations

* remove unneeded plugin id
  • Loading branch information
serenibyss authored Jul 29, 2023
1 parent f2cac03 commit 9ea7f4f
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -401,9 +401,13 @@ if (identifiedVersion == versionOverride) {

group = "com.github.GTNewHorizons"
if (project.hasProperty("customArchiveBaseName") && customArchiveBaseName) {
archivesBaseName = customArchiveBaseName
base {
archivesName = customArchiveBaseName
}
} else {
archivesBaseName = modId
base {
archivesName = modId
}
}


Expand Down Expand Up @@ -778,7 +782,7 @@ dependencies {
java17Dependencies('com.github.GTNewHorizons:Hodgepodge:2.2.19')
}

java17PatchDependencies('net.minecraft:launchwrapper:1.15') {transitive = false}
java17PatchDependencies('net.minecraft:launchwrapper:1.17.1') {transitive = false}
java17PatchDependencies("org.ow2.asm:asm:${asmVersion}")
java17PatchDependencies("org.ow2.asm:asm-commons:${asmVersion}")
java17PatchDependencies("org.ow2.asm:asm-tree:${asmVersion}")
Expand Down

0 comments on commit 9ea7f4f

Please sign in to comment.