Introduction
Welcome to the EdDungeons Developer API documentation. This guide will help you integrate with and extend the EdDungeons plugin using our comprehensive API system.
Last updated
Welcome to the EdDungeons Developer API documentation. This guide will help you integrate with and extend the EdDungeons plugin using our comprehensive API system.
Last updated
<dependencies>
<!-- EdLib API - Core functionality -->
<dependency>
<groupId>es.edwardbelt</groupId>
<artifactId>edlib-api</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/EdLib-API.jar</systemPath>
</dependency>
<!-- EdDungeons API - Plugin integration -->
<dependency>
<groupId>es.edwardbelt</groupId>
<artifactId>eddungeons-api</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/EdDungeons-API.jar</systemPath>
</dependency>
</dependencies>dependencies {
implementation files('libs/EdLib-API.jar')
implementation files('libs/EdDungeons-API.jar')
}name: YourPlugin
version: 1.0.0
main: com.yourplugin.Main
depend: [EdDungeons]
api-version: 1.19
# Optional: Load after EdDungeons
softdepend: [EdDungeons]