Skip to content

Latest commit

 

History

History
51 lines (43 loc) · 3.1 KB

README.md

File metadata and controls

51 lines (43 loc) · 3.1 KB

Build Status

JustEnoughItems is an Item and Recipe viewing mod with a focus on stability, performance, and ease of use.

This means:

  • just items and recipes
  • clean API for developers
  • not a coremod, no dependencies other than Forge

Developing Addons

Add to your build.gradle:

repositories {
  maven {
    // location of the maven that hosts JEI files
    url "http://dvs1.progwml6.com/files/maven"
  }
}

dependencies {
  // compile against the JEI API
  deobfCompile "mezz.jei:jei_${mcversion}:${jei_version}:api"
  // at runtime, use the full JEI jar
  runtime "mezz.jei:jei_${mcversion}:${jei_version}"
}

${mcversion} and ${jei_version} can be found here or on CurseForge, check the file name of the version you want.

Note that the repositories section belongs outside the buildscript area.

Have questions? Join #JEI on esper.net IRC for questions or anything else!

Plugin Examples (how to use the API)

The API is pretty well documented but it can still be confusing to get started without an example. Thankfully there are many working examples: