MultiCoreLib is a library mod for several tools and utils, used by most multiteam mods.
- LazTheArtist [HoverTextItemTool - ItemGroupTool - ItemManagementTool - MathF - RegistrationTool - TeleportTool]
- Qboi [Maven Setup]
If you want to be part of our community, join the discord server! [Discord Invite Link]
- Create a GitHub release with a tag in the format
<version>
example:0.0.1.7
- Go to the JitPack listing.
- Go to the
Releases
tab. - Click the
get it
button besides the version. This will make JitPack build the project, and create a maven entry for that version.
ℹ️ Note: this also works with specific commits, but that wouldn't match the released version. However this can be used to test if the features in the lib works.
- Add the code below to the
build.gradle
in the repositories of the mod that uses the library:maven { url "https://jitpack.io/" }
- Then add the dependency: Replace
<version>
with the version of the mod you'd like to use - you can find the versions [here]implementation fg.deobf("'com.github.MultiTeamDevGroup:MultiCore-Lib:<version>")
- Synchronize the project. In Intelij IDEA you use the sync button from the gradle menu. Or in
cmd.exe
rungradlew.bat
. Or if you're using linux:./gradlew
.