Skip to content

Installation Guide

Traqueur edited this page Oct 5, 2024 · 1 revision

Installation Guide - RecipesAPI


Change with the last version of the API

Using RecipesAPI with Gradle

To include RecipesAPI in your Gradle project, follow these steps:

  1. Add JitPack to your repositories
    In your build.gradle file, add JitPack as a repository:

    repositories {
        maven { url 'https://jitpack.io' }
    }
  2. Add the dependency
    Add the following dependency to the same file:

    dependencies {
        implementation 'com.github.Traqueur-dev:RecipesAPI:<latest-release>'
    }
  3. Sync the project
    After adding the dependency, sync your Gradle project to download RecipesAPI.


Using RecipesAPI with Maven

For Maven users, follow these steps to integrate RecipesAPI:

  1. Add JitPack to your repositories
    In your pom.xml file, add the following under the <repositories> section:

    <repositories>
        <repository>
            <id>jitpack.io</id>
            <url>https://jitpack.io</url>
        </repository>
    </repositories>
  2. Add the dependency
    Then, add the RecipesAPI dependency under the <dependencies> section:

    <dependencies>
        <dependency>
            <groupId>com.github.Traqueur-dev</groupId>
            <artifactId>RecipesAPI</artifactId>
            <version><latest-release></version>
        </dependency>
    </dependencies>
  3. Build the project
    Once you've added the dependency, build your Maven project to pull in RecipesAPI.

Clone this wiki locally