Skip to main content

Getting Started

Artifacts

Currently, EMF has 2 main artifacts for use:

  • even-more-fish-api
  • even-more-fish-plugin

CodeMC

The plugin is available via CodeMC's Maven Repository. To add it to your build tool, follow the examples below:

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")
}