-
Notifications
You must be signed in to change notification settings - Fork 0
Setup
Distractic edited this page Jul 2, 2023
·
2 revisions
You can find the artifact on Jitpack.
Use the version you prefer by following the tutorial on jitpack and replacing {version}
below.
The newest version can be found here
repositories {
maven {
url "https://jitpack.io"
}
}
dependencies {
api("com.github.Rushyverse:core:{version}")
}
repositories {
maven("https://jitpack.io")
}
dependencies {
api("com.github.Rushyverse:core:{version}")
}
<project>
<repositories>
<repository>
<id>jitpack</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.github.Rushyverse</groupId>
<artifactId>core</artifactId>
<version>{version}</version>
</dependency>
</dependencies>
</project>