Getting Started
In this document, you will find how to add deathrun-api
to your project.
Repository
To add our repository to your build system, you must add lines described bellow to your build system file.
<repository>
<id>mrstudios-public</id>
<url>https://repo.mrstudios.pl/public/</url>
</repository>
maven {
url "https://repo.mrstudios.pl/public/"
}
maven("https://repo.mrstudios.pl/public/")
Dependency
To add deathrun-api
to your project, you must add lines described bellow to your build system file.
<dependency>
<groupId>pl.mrstudios.deathrun</groupId>
<artifactId>deathrun-api</artifactId>
<version>VERSION</version>
<scope>provided</scope>
</dependency>
compileOnly "pl.mrstudios.deathrun:deathrun-api:VERSION"
compileOnly("pl.mrstudios.deathrun:deathrun-api:VERSION")
Last modified: 16 November 2024