Skip to content

Commit

Permalink
fix(gradle): make 1.16.5 work again
Browse files Browse the repository at this point in the history
  • Loading branch information
danorris709 committed Aug 30, 2023
1 parent 2688f93 commit 67f93a8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions forge16/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ dependencies {

shadowJar {
configurations = [project.configurations.shadow]
setArchiveBaseName(rootProject.name + '-Forge')
setArchiveClassifier('')
setArchiveBaseName("${rootProject.name}-Forge")

relocate('org.spongepowered.configurate', 'com.envyful.sts.forge.shade.configurate')
relocate('org.yaml.snakeyaml', 'com.envyful.sts.forge.shade.snakeyaml')
Expand All @@ -64,5 +64,6 @@ shadowJar {
exclude "**/module-info.class"
}

jar.finalizedBy('reobfJar')
jar.finalizedBy('shadowJar')
shadowJar.finalizedBy('reobfJar')
build.finalizedBy('versionedRelease')

0 comments on commit 67f93a8

Please sign in to comment.