Getting Started
Warp Config
Warp Config is a general purpose configuration mapper for defining type-safe, boilerplate-free configuration objects.
Installation
Add the following to your build script:
<dependencies>
<dependency>
<groupId>me.sparky983.warp</groupId>
<artifactId>warp-yaml</artifactId>
<version>0.1</version>
</dependency>
</dependencies>repositories {
mavenCentral()
}
dependencies {
implementation("me.sparky983.warp:warp-yaml:0.1")
}repositories {
mavenCentral()
}
dependencies {
implementation 'me.sparky983.warp:warp-yaml:0.1'
}Last updated