abyssallib-docs Help

Getting Started

Welcome to AbyssalLib!

(This API and its docs are NOT complete, they may change, and more will be added over time)

To start using this framework in your project, you'll need to add the dependency via JitPack.

🔧 Installation

  1. Add the JitPack repository to your project's build system.

    For Gradle, add this to your `build.gradle`:

    repositories { maven { url 'https://jitpack.io' } }

    For Maven, add this to your `pom.xml`:

    <repositories> <repository> <id>jitpack.io</id> <url>https://jitpack.io</url> </repository> </repositories>
  2. Add the AbyssalLib dependency to your project.

    For Gradle, add this to your build.gradle:

    dependencies { implementation 'com.github.darksoulq:AbyssalLib:Version' }

    For Maven, add this to your `pom.xml`:

    <dependencies> <dependency> <groupId>com.github.darksoulq</groupId> <artifactId>AbyssalLib</artifactId> <version>Version</version> </dependency> </dependencies>

    (Replace Version with the specific version tag you wish to use.)

You're now ready to start building plugins with AbyssalLib!

18 May 2025