The first version of this project is still being developed, additions will be done as amends to the “LiveMap 0.1.0” commit for the time being.
LiveMap
A real time updating web map for Minecraft servers.
Building
The project can be built by downloading it, navigating into the directory, and running ./gradlew build
or
gradlew.bat build
on Windows.
The compiled jar be build/LiveMap-X.Y.Z.jar
.
Contributing
Contributions must follow the following rules:
-
Lines should be 120 lines long at most, this is not a strict requirement, lines can be longer.
-
Never use wildcard imports.
-
Sometimes there can be name conflicts when importing, import them with a custom name, prefixed by the source. For example “LibAListener” and “LibBListener”.
-
Avoid excessive use of
.apply {}
or similar. -
Do not statically import individual elements from enums or objects.
-
If there is a large block of mostly similar code, align it with spaces, as it makes things more readable.