Add the repository to your pom.xml file:
<repositories>
<repository>
<id>techmc-studios-releases</id>
<name>TechMC Repository</name>
<url>https://repo.techmc.es/releases</url>
</repository>
</repositories>Add the dependency:
<dependency>
<groupId>dev.wuason</groupId>
<artifactId>mechanics</artifactId>
<version>RELEASE</version>
<scope>provided</scope>
</dependency>Add the repository to your build.gradle file:
repositories {
maven {
name "techmcStudiosReleases"
url "https://repo.techmc.es/releases"
}
}Add the dependency:
dependencies {
compileOnly 'dev.wuason:mechanics:RELEASE'
}Add the repository to your build.gradle.kts file:
repositories {
maven {
name = "techmcStudiosReleases"
url = uri("https://repo.techmc.es/releases")
}
}Add the dependency:
dependencies {
compileOnly("dev.wuason:mechanics:RELEASE")
}