Skip to content
forked from Auxilor/eco

Spigot development library, built for the latest version.

License

Notifications You must be signed in to change notification settings

PrimalPower/eco

 
 

Repository files navigation

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+

Downloads

  • Stable (Recommended): GitHub, Polymart
  • Dev (Not Recommended): GitHub (Open latest run and download)

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

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.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 54.7%
  • Kotlin 45.3%