eco is a powerful Spigot development library that simplifies the process of plugin creation and supercharges your plugins. It's the engine behind EcoEnchants, Reforges, EcoItems, EcoSkills, EcoArmor, Talismans, and many more.
- Requires ProtocolLib to be installed: get the latest version here
- Supports 1.16.5+
The 6.13.0 Javadoc can be found here
eco is a standalone plugin, so you will need to install it on any servers that have plugins which depend on it, and specify it as a dependency in your plugin.yml:
depend:
- eco
Gradle:
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
compileOnly 'com.willfp:eco:Tag'
}
Replace Tag
with a release tag for eco, eg 6.13.0
.
Maven:
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<dependency>
<groupId>com.willfp</groupId>
<artifactId>eco</artifactId>
<version>Tag</version>
<scope>provided</scope>
</dependency>
Replace Tag
with a release tag for eco, eg 6.13.0
.
Run the following commands in your terminal of choice.
If you're on windows, you will need to have git bash installed.
git clone https://github.com/Auxilor/eco
cd eco
./gradlew build
Click here to read the entire license.