Gradle
Gradle setup tutorial
To start, you need to add the repository to your build.gradle.
repositories {
...
maven { url 'https://jitpack.io' }
}In order to include the framework 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 'com.haroldstudios.hexitextlib', '[YOU PACKAGE].hexitextlib'
}Last updated
Was this helpful?