This library is a collection of functions that I have written to help me with my work. I have decided to share them with the world in the hope that they will be useful to others.
To use this library in your Maven project, add the following dependency to your pom.xml
file:
<repositories>
<repository>
<id>repsy</id>
<name>ReaperMaga Library</name>
<url>https://repo.repsy.io/mvn/reapermaga/library</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.github.reapermaga.library</groupId>
<artifactId>{lib}</artifactId>
<version>{version}</version>
</dependency>
</dependencies>
Replace {lib}
with the name of the library you want to use and {version}
with the version number.
You can find the available libraries and versions on the Repsy Repository.
To use this library in your Gradle project, add the following dependency to your build.gradle.kts
file:
repositories {
maven {
url = uri("https://repo.repsy.io/mvn/reapermaga/library")
}
}
dependencies {
implementation("com.github.reapermaga.library:{lib}:{version}")
}
Replace {lib}
with the name of the library you want to use and {version}
with the version number.
You can find the available libraries and versions on the Repsy Repository.