-
-
Notifications
You must be signed in to change notification settings - Fork 34
Setting up
Alexander edited this page Sep 4, 2019
·
3 revisions
To use this library you should specify repositories for dependencies and for library itself.
For LWJGL and JOML dependencies
<repositories>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>
repositories {
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
}
Also you can add your own versions of these libraries using LWJGL form.
For LEGUI and CBCHAIN dependencies
<repositories>
<repository>
<id>so-releases</id>
<url>https://raw.githubusercontent.com/SpinyOwl/repo/releases</url>
</repository>
<repository>
<id>so-snapshots</id>
<url>https://raw.githubusercontent.com/SpinyOwl/repo/snapshots</url>
</repository>
</repositories>
repositories {
maven { url "https://raw.githubusercontent.com/SpinyOwl/repo/snapshots" }
maven { url "https://raw.githubusercontent.com/SpinyOwl/repo/releases" }
}
For latest develop build you can use next repository:
https://raw.githubusercontent.com/SpinyOwl/repo/develop
<!-- LEGUI - SNAPSHOT - https://github.com/SpinyOwl/legui -->
<dependency>
<groupId>org.liquidengine</groupId>
<artifactId>legui</artifactId>
<version>${legui_version}</version>
</dependency>
compile group: 'org.liquidengine', name: 'legui', version: "$legui_version";
Develop builds: https://github.com/SpinyOwl/repo/tree/develop/org/liquidengine/legui
Snapshot builds: https://github.com/SpinyOwl/repo/tree/snapshots/org/liquidengine/legui
Release builds: https://github.com/SpinyOwl/repo/tree/releases/org/liquidengine/legui