this repository only contains api methods, it is not the plugin code
How to include the API with Maven:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.github.Sculmix</groupId>
<artifactId>API-ECrates</artifactId>
<version>LAST-VERSION</version>
<scope>provided</scope>
</dependency>
</dependencies>How to include the API with Gradle:
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
compileOnly "com.github.Sculmix:API-ECrates:LAST-VERSION"
}