Skip to content

Commit

Permalink
fixed sad forgix
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke100000 committed May 16, 2024
1 parent ce52ddc commit 3c15bce
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 1 addition & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ allprojects {
}
}

group = rootProject.group
description = rootProject.displayname
archivesBaseName = rootProject.name
version = getAppVersion()
Expand Down Expand Up @@ -88,7 +87,7 @@ allprojects {
}

forgix {
group = rootProject.group
group = rootProject.groupId
mergedJarName = "${rootProject.name}-${rootProject.version}-universal.jar"
outputDir = "build/libs"

Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 7.5.16

* Fixed issues with building jars

# 7.5.15

* Merged [Inworld integration](https://github.com/Luke100000/minecraft-comes-alive/wiki/GPT3-based-conversations) branch (thanks CSCMe!)
Expand Down
4 changes: 2 additions & 2 deletions quilt/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ dependencies {
}

processResources {
inputs.property "group", rootProject.group
inputs.property "group", rootProject.groupId
inputs.property "version", project.version.toString()

filesMatching("quilt.mod.json") {
expand "group": rootProject.group,
expand "group": rootProject.groupId,
"version": project.version.toString()
}

Expand Down

0 comments on commit 3c15bce

Please sign in to comment.