1.5 KiB
1.5 KiB
title | description | published | date | tags | editor | dateCreated |
---|---|---|---|---|---|---|
Getting Started | Api usage | false | 2024-12-28T21:16:56.592Z | developers | markdown | 2024-12-28T20:10:42.650Z |
API Usage
This guide explains how to integrate the new and improved VehiclesPlus API (v3) into your project.
Adding VehiclesPlus to Your Project
To use the VehiclesPlus API in your plugin, follow these steps:
Step 1: Add VehiclesPlus to Your Dependencies
Ensure VehiclesPlus is added as a dependency in your project. To always use the latest version, update your dependency configuration as shown below:
Maven (pom.xml
):
<repository>
<id>sbdevelopment-repo</id>
<url>https://repo.sbdevelopment.tech/releases</url>
</repository>
<dependency>
<groupId>tech.sbdevelopment</groupId>
<artifactId>vehiclesplus</artifactId>
<version>latest</version>
</dependency>
Gradle (build.gradle
):
repositories {
maven {
url 'https://repo.sbdevelopment.tech/releases'
}
}
dependencies {
implementation 'tech.sbdevelopment:vehiclesplus:latest'
}
Note
: Using
latest
ensures that your project always fetches the most recent release, but it might cause issues if breaking changes are introduced. For more stability, consider specifying a specific version (e.g.,3.0.2
). {.is-info}
API Documentation
For additional details and advanced usage refer to the official VehiclesPlus Javadoc.