Developer Reference
Adding SlimefunTranslation as a dependency
You can add SlimefunTranslation as a dependency from Jitpack.
- Maven
- Gradle (Groovy)
- Gradle (Kotlin)
Add the following repository to <repositories> section:
<repository>
<id>jitpack-repo</id>
<url>https://jitpack.io</url>
</repository>
And add the following dependency to <dependencies> section:
<dependency>
<groupId>net.guizhanss</groupId>
<artifactId>SlimefunTranslation</artifactId>
<version>VERSION</version>
<scope>provided</scope>
</dependency>
Replace VERSION
with the version you want to use.
Repository:
repositories {
maven {
url 'https://jitpack.io'
}
}
Dependency:
dependencies {
compileOnly 'net.guizhanss:SlimefunTranslation:VERSION'
}
Replace VERSION
with the version you want to use.
Repository:
repositories {
maven("https://jitpack.io")
}
Dependency:
dependencies {
compileOnly("net.guizhanss:SlimefunTranslation:VERSION")
}
Replace VERSION
with the version you want to use.