Warp is an annotation based configuration mapper for Java.
For Maven, add the following:
<dependency>
<groupId>me.sparky983.warp</groupId>
<artifactId>warp-yaml</artifactId>
<version>0.2</version>
</dependency>For Gradle (kts), add the following:
repositories {
mavenCentral()
}
dependencies {
implementation("me.sparky983.warp:warp-yaml:0.2")
}For Gradle (Groovy), add the following:
repositories {
mavenCentral()
}
dependencies {
implementation 'me.sparky983.warp:warp-yaml:0.2'
}