Skip to content

Getting started

Luis Bazán edited this page Apr 7, 2023 · 3 revisions

Maven

  1. Add the JitPack repository to your build file.
<repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
</repository>
  1. Add the dependency.
<dependency>
    <groupId>com.github.luisBazanDev</groupId>
    <artifactId>KitsAPI</artifactId>
    <version>VERSION</version>
</dependency>

Gradle

  1. Add the JitPack repository to your build file.
allprojects {
  repositories {
    maven { url 'https://jitpack.io' }
  }
}
  1. Add the dependency.
dependencies {
  implementation 'com.github.luisBazanDev:KitsAPI:VERSION'
}
Clone this wiki locally