diff options
author | Shane Freeder <[email protected]> | 2020-09-01 23:20:58 +0100 |
---|---|---|
committer | Shane Freeder <[email protected]> | 2020-09-01 23:20:58 +0100 |
commit | 563f77ad230c6a0e5b3757e1dc7979ff2ad73b39 (patch) | |
tree | fcda3187d31d5de264f2d1fe45e1485a54556539 /scripts | |
parent | 1ab021ddca9dc2bd48ce4308cccb7440528af25a (diff) | |
download | Paper-563f77ad230c6a0e5b3757e1dc7979ff2ad73b39.tar.gz Paper-563f77ad230c6a0e5b3757e1dc7979ff2ad73b39.zip |
install remapped server jar to paper package space
Spigot has been stripping the minecraft-server jar down in order to
reduce it's size, primarily by removing classes they don't use from
fastutil. as we use fastutil and offer it as API, this is useless
to us, and creates headaches when it breaks builds due to spigots
version of this being installed.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/remap.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/remap.sh b/scripts/remap.sh index 0d9d64d4bb..cc689aae28 100755 --- a/scripts/remap.sh +++ b/scripts/remap.sh @@ -72,7 +72,7 @@ fi echo "Installing remapped jar..." cd "$workdir/CraftBukkit" # Need to be in a directory with a valid POM at the time of install. -mvn install:install-file -q -Dfile="$jarpath-mapped.jar" -Dpackaging=jar -DgroupId=org.spigotmc -DartifactId=minecraft-server -Dversion="$minecraftversion-SNAPSHOT" +mvn install:install-file -q -Dfile="$jarpath-mapped.jar" -Dpackaging=jar -DgroupId=io.papermc -DartifactId=minecraft-server -Dversion="$minecraftversion-SNAPSHOT" if [ "$?" != "0" ]; then echo "Failed to install remapped jar." exit 1 |