JavaAPIs / dbio4j

An implementation of discord.bio for Java

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DBio API for Java

An implementation of the discord.bio API in Java.

Downloading / Installing

You'll need to install the build you want. All are considered dev builds unless otherwise specified in a Release.

Replace [version] with the latest build found on the Jenkins page. See dbio4j-[version string].jar.

Maven

First, you need Chew's Maven repository

<repository>
    <id>chew-jenkins</id>
    <url>https://jenkins.chew.pw/plugin/repository/everything/</url>
</repository>
<dependency>
    <groupId>bio.discord.api</groupId>
    <artifactId>dbio4j</artifactId>
    <version>[version]</version>
</dependency>

Gradle

First you need Chew's Maven repository

repositories {
    maven {
        url 'https://jenkins.chew.pw/plugin/repository/everything/'
    }
}

Then you need the dependency

dependencies {
    compileOnly 'bio.discord.api:dbio4j:[version]'
}

Builds remain there indefinitely, but it's always best to stay up to date.

Alternatively, on the same Jenkins link, you can manually download the JAR yourself for safe keeping, in case it does go down.

Using

Using the API is simple. Here's an example to get you started!

You can view the Javadocs here.

About

An implementation of discord.bio for Java


Languages

Language:Java 100.0%