Setup
This is how you add MF-MSG to your project.
Make sure to replace
{version}
with the latest version of MF-MSG.
Latest version: 2.2.4-SNAPSHOT
Gradle
Maven
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'
}
You need to add the dependency to your
pom.xml
.<dependency>
<groupId>me.mattstudios</groupId>
<artifactId>triumph-msg-bukkit</artifactId>
<version>{version}</version> <!-- replace version here -->
</dependency>
In order to include the framework in your project, you need to add the following to your
pom.xml
, in the plugins section.
Replace [YOUR PACKAGE]
with your plugin's package, for example me.myplugin.plugin
.<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<relocations>
<relocation>
<pattern>me.mattstudios.msg</pattern>
<shadedPattern>[YOUR PACKAGE].mfmsg</shadedPattern> <!-- Replace package here here -->
</relocation>
</relocations>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
Last modified 2yr ago