-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
Sky edited this page Feb 5, 2022
·
1 revision
Before doing anything, be sure IC is been installed on your server, and link it using a dependency manager to your project:
The VERSION can be found as the latest release tag.
Repository:
<repositories>
...
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
...
</repositories>
Dependency:
<dependency>
...
<groupId>com.github.SkyCraft78</groupId>
<artifactId>ItemCreator</artifactId>
<version>VERSION</version>
...
</dependency>
Repository:
repositories {
...
maven { url 'https://jitpack.io' }
...
}Dependency:
dependencies {
...
implementation 'com.github.SkyCraft78:ItemCreator:VERSION'
...
}