This repository was archived by the owner on May 27, 2025. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork 8
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.
- Add
Jitpackto your repositories
Maven:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>Gradle:
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}- Add
BiomesAPIto your dependancies
Maven:
<dependency>
<groupId>com.github.Outspending</groupId>
<artifactId>BiomesAPI</artifactId>
<version>VERSION</version>
</dependency>Gradle:
dependencies {
implementation 'com.github.Outspending:BiomesAPI:VERSION'
}- Reload project
- Done!
You've successfully added BiomesAPI to your project! Congrats, how easy was that!