Installing Dependencies

How to add Quark to your plugin


To use Quark you need to add BX Team Repository to your repositories and Quark to your dependencies in your project.

Depending on the build system you are using, add the following code to your project:

maven("https://repo.bxteam.org/releases")
maven { url "https://repo.bxteam.org/releases" }
<repository>
    <id>bx-team-releases</id>
    <name>BX Team Maven repository</name>
    <url>https://repo.bxteam.org/releases</url>
</repository>
dependencies {
    implementation("org.bxteam.quark:{platform}:1.0.0")
}
dependencies {
    implementation "org.bxteam.quark:{platform}:1.0.0"
}
<dependency>
    <groupId>org.bxteam.quark</groupId>
    <artifactId>{platform}</artifactId>
    <version>1.0.0</version>
</dependency>

Replacing {platform}

Replace {platform} with the platform you want to use (See platforms).

Edit on GitHub

Last updated on