Getting Started
Artifacts
Currently, EMF has 2 main artifacts for use:
even-more-fish-apieven-more-fish-plugin
CodeMC
The plugin is available via CodeMC's Maven Repository. To add it to your build tool, follow the examples below:
- Gradle (Kotlin)
- Maven
build.gradle.kts
repositories {
maven("https://repo.codemc.io/repository/EvenMoreFish/")
}
// Note: The version shown here may not be the latest. Make sure to check the latest version before using!
dependencies {
// For the unstable plugin artifact. Things may change at any time.
compileOnly("com.oheers.evenmorefish:even-more-fish-plugin:2.4.3") {
exclude("de.tr7zw", "item-nbt-api")
}
// For the api artifact.
compileOnly("com.oheers.evenmorefish:even-more-fish-api:2.4.3")
}
pom.xml
<repositories>
<repository>
<id>evenmorefish</id>
<url>https://repo.codemc.io/repository/EvenMoreFish</url>
</repository>
</repositories>
<!-- Note: The version shown here may not be the latest. Make sure to check the latest version before using! -->
<dependencies>
<!-- For the unstable plugin artifact. Things may change at any time. -->
<dependency>
<groupId>com.oheers.evenmorefish</groupId>
<artifactId>even-more-fish-plugin</artifactId>
<version>2.4.3</version>
<scope>provided</scope>
<classifier>shadow</classifier>
<exclusions>
<exclusion>
<groupId>de.tr7zw</groupId>
<artifactId>item-nbt-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- For the api artifact -->
<dependency>
<groupId>com.oheers.evenmorefish</groupId>
<artifactId>even-more-fish-api</artifactId>
<version>2.4.3</version>
<scope>provided</scope>
</dependency>
</dependencies>