eco is a powerful Spigot plugin framework that simplifies plugin development and supercharges your plugins.
It is the engine behind EcoEnchants, Reforges, EcoItems, EcoSkills, EcoArmor, Talismans, and many more.
eco comes packed with all the tools you need in your plugins:
eco is a standalone plugin. Install it on any server running plugins that depend on it, and declare it in your plugin.yml:
depend:
- eco
Gradle repositories:
repositories {
maven("https://repo.auxilor.io/repository/maven-public/")
}
Gradle dependency:
dependencies {
compileOnly("com.willfp:eco:Tag")
}
Replace Tag with a release tag, for example 7.4.0.
Maven repository + dependency:
<repository>
<id>auxilor</id>
<url>https://repo.auxilor.io/repository/maven-public/</url>
</repository>
<dependency>
<groupId>com.willfp</groupId>
<artifactId>eco</artifactId>
<version>Tag</version>
<scope>provided</scope>
</dependency>
Replace Tag with a release tag, for example 7.4.0.
Javadocs are available via JitPack using this format:
https://javadoc.jitpack.io/com/willfp/eco/<version>/javadoc/
(Replace <version> with the release tag you are targeting.)
git clone https://github.com/Auxilor/eco
cd eco
./gradlew build
Windows:
git clone https://github.com/Auxilor/eco
cd eco
.\gradlew.bat build
eco is licensed under MIT.
Read the full license: LICENSE.md

Powerful spigot development library that supercharges your plugins