Add the repository to your pom.xml file:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add the dependency:
<dependency>
<groupId>com.github.Wuason6x9</groupId>
<artifactId>mechanics</artifactId>
<version>RELEASE-VERSION</version>
<scope>provided</scope>
</dependency>
Add the repository to your build.gradle file:
repositories {
maven { url 'https://jitpack.io' }
}
Add the dependency:
dependencies {
compileOnly 'com.github.Wuason6x9:mechanics:RELEASE-VERSION'
}
Add the repository to your build.gradle.kts file:
repositories {
maven("https://jitpack.io")
}
Add the dependency:
dependencies {
compileOnly("com.github.Wuason6x9:mechanics:RELEASE-VERSION")
}