Skip to main content

Getting Started

Artifacts

Currently, EMF has 2 main artifacts for use:

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

In the future these will be further abstracted so you don't need to use the "core" artifact any longer.

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

dependencies {
// For the plugin artifact
compileOnly("com.oheers.evenmorefish:even-more-fish-plugin:2.0.0-SNAPSHOT")
// For the api artifact
compileOnly("com.oheers.evenmorefish:even-more-fish-api:2.0.0-SNAPSHOT")
}