minecraft-modpack-almond
A Fabric/datapack vanilla-substitute for Minecraft.
Usage
Currently, this modpack is distributed as a MultiMC zip.
- Download MultiMC and install.
- Open MultiMC and and add login credentials
- Click "Add Instance" and select "Import from zip" on the left-hand side.
- Paste in this URL: MMC client release 20w14a-1 and hit
- When the download finishes, double-click 'minecraft-modpack-almond-client-20w14a-1.zip'
- If you are not signed into a Mojang account, you will be promted for credentials
Building
mvn clean install
Server Usage
A container image is shipped to docker.io/rremer/minecraft-modpack-almond. You can start it via:
docker run -d \
-p 25565:25565 \
-e EULA_MINECRAFT_BOOL=true \
-v /path/to/persistent/world:/minecraft-modpack-almond/.minecraft/world \
rremer/minecraft-modpack-almond:20w14a-1
... where /path/to/persistent/world
is some real local filesystem to persist the world data between container restarts.
Releasing
mvn versions:set -DnewVersion=20w14a-1
mvn clean deploy -Dparameter.gpg.skip=false
mvn site site-deploy
Versioning
A version number of this project's artifacts is built as <minecraft.version>-<project.version>
, where:
minecraft.version
is a version of minecraft (1.15.2, 20w10a ...)project.version
is an increment for this project to release against a version of minecraft (1,2,3, ...)