Skip to content

Installation

Cam edited this page Dec 6, 2023 · 9 revisions

Installation

Let's get Vouchley's API installed within your project.

Gradle (Groovy)
Add the following line to your repositories.

Make sure to add this above your Maven Central repository as it will attempt to use the broken version on there.

maven { url 'https://software.cameronbowe.net/public' }

Add the following line to your dependencies.

Replace version with your desired version in releases.

implementation 'net.cameronbowe:VouchleyAPI:version'
Gradle (KTS)
Add the following line to your repositories.

Make sure to add this above your Maven Central repository as it will attempt to use the broken version on there.

maven("https://software.cameronbowe.net/public")

Add the following line to your dependencies.

Replace version with your desired version in releases.

implementation("net.cameronbowe", "VouchleyAPI", "version")
Maven
Add the following lines to your repositories.

Make sure to add this above your Maven Central repository as it will attempt to use the broken version on there.

<repository>
    <id>net.cameronbowe</id>
    <url>https://software.cameronbowe.net/public</url>
</repository>

Add the following lines to your dependencies.

Replace version with your desired version in releases.

<dependency>
    <groupId>net.cameronbowe</groupId>
    <artifactId>VouchleyAPI</artifactId>
    <version>version</version>
</dependency>

Clone this wiki locally