-
Notifications
You must be signed in to change notification settings - Fork 1
Installation Guide
Traqueur edited this page Oct 5, 2024
·
1 revision
To include RecipesAPI in your Gradle project, follow these steps:
-
Add JitPack to your repositories
In yourbuild.gradlefile, add JitPack as a repository:repositories { maven { url 'https://jitpack.io' } } -
Add the dependency
Add the following dependency to the same file:dependencies { implementation 'com.github.Traqueur-dev:RecipesAPI:<latest-release>' } -
Sync the project
After adding the dependency, sync your Gradle project to download RecipesAPI.
For Maven users, follow these steps to integrate RecipesAPI:
-
Add JitPack to your repositories
In yourpom.xmlfile, add the following under the<repositories>section:<repositories> <repository> <id>jitpack.io</id> <url>https://jitpack.io</url> </repository> </repositories>
-
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>
-
Build the project
Once you've added the dependency, build your Maven project to pull in RecipesAPI.