Setup

This is how you add MF-MSG to your project.

Version

Make sure to replace {version} with the latest version of MF-MSG. Latest version: 2.2.4-SNAPSHOT

You need to add the dependency to your build.gradle.

repositories {
    maven { url = 'https://repo.mattstudios.me/artifactory/public' }
}

dependencies {
    implementation "me.mattstudios:triumph-msg-bukkit:{version}" // Replace version here 
}

In order to include the lib in your project, you need to add shadowJar plugin build.gradle. Replace [YOUR PACKAGE]with your plugin's package, for example me.myplugin.plugin.

apply plugin: 'com.github.johnrengelman.shadow'

shadowJar {
   relocate 'me.mattstudios.msg', '[YOUR PACKAGE].mfmsg'
}

Last updated