This project is now archived as I do not have time to maintain this and I no longer play Minecraft 1.12.2.
1.12.2 Paper fork aimed at improving server performance for anarchy servers. Latest Dev Build*
Note: This fork is based off Aikar's EMC Framework
Anyone can contribute. Just follow the below steps!
Assistant will be given to get pull requests working correctly.
Dionysus uses the same paperclip jar system that Paper uses.
You can download the latest release of Dionysus here.
You can also build it yourself
In order to use Dionysus as a dependency you must build it yourself
This will add it to your local maven repository folder. Then add the following to your pom.xml:
<dependency>
<groupId>dev.pomf.dionysus</groupId>
<artifactId>dionysus-api</artifactId>
<version>1.12.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency><dependency>
<groupId>dev.pomf.dionysus</groupId>
<artifactId>dionysus</artifactId>
<version>1.12.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>Windows: C:\Users\<UserName>\.m2
Linux: /home/<UserName>/.m2
Mac: /Users/<UserName>/.m2
<repository>
<id>project.local</id>
<name>project</name>
<url>file:/Users/User/.m2/repository/</url>
</repository>Requirements:
- You need
gitinstalled, with a configured user name and email. On windows you need to run from git bash. - You need
maveninstalled - You need
jdk 1.8to decompile andjdk17+ installed to compile (andjre17+ to run) - Anything else that
paperrequires to build
If all you want is a paperclip server jar run ./dionysus jar
- Run
./dionysus patchin your project root. - Run
./dionysus buildto build the respective api and server jars.
Patches are effectively just commits in either Dionysus-API or Dionysus-Server.
- Create commit in
Dionysus-APIorDionysus-Server. - Run
./dionysus rbin your project root.` - Commit patch to
Dionysusrepo.
Modifying commits will also modify its corresponding patch file.
The PATCHES-LICENSE file describes the license for api & server patches,
found in ./patches and its subdirectories except when noted otherwise.
Everything else is licensed under the MIT license, except when note otherwise. See empirecraft and byof for the license of material used/modified by this project.