CatCoderr / eco

Spigot development library, built for the latest version.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

eco

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.

spigot

For server owners

  • Requires ProtocolLib to be installed: get the latest version here
  • Supports 1.16.5+

For developers

Javadoc

The 6.13.0 Javadoc can be found here

Plugin Information

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

eco is available from any of these places:

Get from JitPack:

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.

Build locally:

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

License

Click here to read the entire license.

Check out our partners!

About

Spigot development library, built for the latest version.

License:GNU General Public License v3.0


Languages

Language:Java 60.6%Language:Kotlin 39.4%