Hooking into plugin - desaxxx/DMentions GitHub Wiki

Adding to Maven Project

<repositories>
  <repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
  </repository>
</repositories>

Note

Latest version is at head of the page

<dependency>
  <groupId>com.github.desaxxx</groupId>
  <artifactId>DMentions</artifactId>
  <version>LATEST.VERSION.HERE</version>
</dependency>

Adding to Gradle Project

dependencyResolutionManagement {
  repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
  repositories {
    mavenCentral()
    maven { url 'https://jitpack.io' }
  }
}

Note

Latest version is at head of the page

dependencies {
  implementation 'com.github.desaxxx:DMentions:LATEST.VERSION.HERE'
}
⚠️ **GitHub.com Fallback** ⚠️