Skip to content

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.

Maven

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>

Gradle

Repository:

repositories {
    ...
    maven { url 'https://jitpack.io' }
    ...
}

Dependency:

dependencies {
    ...
    implementation 'com.github.SkyCraft78:ItemCreator:VERSION'
    ...
}

Home


Getting Started

Developer API

Clone this wiki locally