Skip to content
This repository was archived by the owner on May 27, 2025. It is now read-only.

Getting Started

Outspending edited this page Dec 27, 2023 · 3 revisions

Getting started with BiomesAPI.

Implementing BiomesAPI and using it within your projects is easy. As shown below these steps are how you add BiomesAPI to your server and use it to its full potential. You can learn about adding the nightly build of BiomesAPI at Nightly Builds.

  1. Add Jitpack to your repositories

Maven:

<repositories>
        <repository>
	        <id>jitpack.io</id>
	        <url>https://jitpack.io</url>
	</repository>
</repositories>

Gradle:

repositories {
	mavenCentral()
	maven { url 'https://jitpack.io' }
}
  1. Add BiomesAPI to your dependancies

Maven:

<dependency>
	<groupId>com.github.Outspending</groupId>
	<artifactId>BiomesAPI</artifactId>
	<version>VERSION</version>
</dependency>

Gradle:

dependencies {
	implementation 'com.github.Outspending:BiomesAPI:VERSION'
}
  1. Reload project
  2. Done!

You've successfully added BiomesAPI to your project! Congrats, how easy was that!

Clone this wiki locally