-
Notifications
You must be signed in to change notification settings - Fork 3
Installation
ZorT edited this page Dec 21, 2023
·
12 revisions
Select one of build systems you want to use with this library. We recommend using Gradle, but Maven is supported too.
Then you can continue to next page.
Gradle
Add this project to your build path using Gradle with JitPack as represented below.
repositories {
maven { url = 'https://jitpack.io' }
maven { url = 'https://repo.codemc.org/repository/maven-public/' }
}
dependencies {
implementation 'com.github.ZorTik:ContainrGUI:0.7-pre2'
}
Maven
You can also use Maven with JitPack as seen below.
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<repository>
<id>CodeMC</id>
<url>https://repo.codemc.org/repository/maven-public/</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.ZorTik</groupId>
<artifactId>ContainrGUI</artifactId>
<version>0.7-pre2</version>
</dependency>
⚠️ If build does not work, try using lowercase ID like "com.github.zortik:containrgui:0.7-pre2"!⚠️