Skip to content

Commit

Permalink
fixed gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke100000 committed Jan 26, 2025
1 parent ad626fe commit 9a7aff1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def getAppVersion = { ->
allprojects {
apply plugin: "maven-publish"

group = rootProject.group
group = rootProject.groupId
description = rootProject.displayname
archivesBaseName = rootProject.name
version = getAppVersion()
Expand Down Expand Up @@ -77,15 +77,15 @@ forgix {
outputDir = "build/libs"

forge {
jarLocation = "build/libs/${rootProject.name}-${rootProject.version}-forge.jar"
jarLocation = "build/libs/forge-${rootProject.version}.jar"
mixin "mca.mixin.json"
}

fabric {
jarLocation = "build/libs/${rootProject.name}-${rootProject.version}-fabric.jar"
jarLocation = "build/libs/fabric-${rootProject.version}.jar"
}

quilt {
jarLocation = "build/libs/${rootProject.name}-${rootProject.version}-quilt.jar"
jarLocation = "build/libs/quilt-${rootProject.version}.jar"
}
}

0 comments on commit 9a7aff1

Please sign in to comment.