A lightweight economy management and storage solution.
This plugin is currently in an early stage of development and breaking changes will occur.
Any extension plugin built using this plugin will require you to add it as a plugin to your server.
This plugin requires the AlpineCore plugin.
The plugin has been explicitly verified to work on releases ranging from 1.8.8 to 1.21.5.
To use Bearconomy, you must add it as a dependency to your project:
Gradle (Kotlin DSL)
repositories {
maven("https://lib.alpn.cloud/releases")
}
dependencies {
compileOnly("co.crystaldev:bearconomy-api:1.0.4")
}Gradle (Groovy DSL)
repositories {
maven {
url 'https://lib.alpn.cloud/releases'
}
}
dependencies {
compileOnly 'co.crystaldev:bearconomy-api:1.0.4'
}Maven
<repositories>
<repository>
<name>Alpine Cloud</name>
<url>https://lib.alpn.cloud/releases</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>co.crystaldev</groupId>
<artifactId>bearconomy-api</artifactId>
<version>1.0.4</version>
</dependency>
</dependencies>All classes and methods that are part of the API should have Javadocs. If one does not, open an issue.
Keep in mind that using this library will require it to be added as a plugin on any server using your plugin. DO NOT shade it into your own plugin.
This library is licensed under the Mozilla Public License v2.0. For information regarding your requirements in the use of this library, please see Mozilla's FAQ.