Skip to content

Commit 7912bad

Browse files
committed
build: Rename HytaleServer maven artifact to avoid parent POM issues
1 parent 04fd507 commit 7912bad

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
5050
if [ -f "$JAR_PATH" ]; then
5151
echo "Found jar at: $JAR_PATH"
52-
mvn install:install-file -Dfile="$JAR_PATH" -DgroupId=com.hypixel.hytale -DartifactId=HytaleServer-parent -Dversion=1.0-SNAPSHOT -Dpackaging=jar
52+
mvn install:install-file -Dfile="$JAR_PATH" -DgroupId=com.hypixel.hytale -DartifactId=HytaleServer -Dversion=1.0-SNAPSHOT -Dpackaging=jar
5353
else
5454
echo "Error: HytaleServer.jar not found after extraction!"
5555
ls -R

.github/workflows/curseforge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
JAR_PATH=$(find . -name "HytaleServer.jar" | head -n 1)
4040
4141
if [ -f "$JAR_PATH" ]; then
42-
mvn install:install-file -Dfile="$JAR_PATH" -DgroupId=com.hypixel.hytale -DartifactId=HytaleServer-parent -Dversion=1.0-SNAPSHOT -Dpackaging=jar
42+
mvn install:install-file -Dfile="$JAR_PATH" -DgroupId=com.hypixel.hytale -DartifactId=HytaleServer -Dversion=1.0-SNAPSHOT -Dpackaging=jar
4343
else
4444
echo "Error: HytaleServer.jar not found!"
4545
ls -R

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ dependencies {
7676
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.0'
7777

7878
if (project.hasProperty('useMavenHytale')) {
79-
implementation 'com.hypixel.hytale:HytaleServer-parent:1.0-SNAPSHOT'
79+
implementation 'com.hypixel.hytale:HytaleServer:1.0-SNAPSHOT'
8080
} else {
8181
implementation files(hytaleServerPath)
8282
}

0 commit comments

Comments
 (0)