The following project is a reimplementation of YAMLParser which supports many new data formats.
As of right now, the supported formats are:
YAMLJSONXMLTOML
Each one of them can be retrieved singularly using its name, or by loading the whole project to retrieve all of them simultaneously.
Maven:
<repository>
<id>Fulminazzo repository</id>
<url>https://repo.fulminazzo.it/releases</url>
</repository><dependency>
<groupId>it.fulminazzo</groupId>
<artifactId>Configurations</artifactId>
<version>{VERSION}</version>
</dependency>Gradle:
repositories {
maven { url = 'https://repo.fulminazzo.it/releases' }
}dependencies {
implementation 'it.fulminazzo:Configurations:{VERSION}'
}Maven:
<repository>
<id>Fulminazzo repository</id>
<url>https://repo.fulminazzo.it/releases</url>
</repository><dependency>
<groupId>it.fulminazzo.Configurations</groupId>
<artifactId>yaml</artifactId>
<version>{VERSION}</version>
</dependency>Gradle:
repositories {
maven { url = 'https://repo.fulminazzo.it/releases' }
}dependencies {
implementation 'it.fulminazzo.Configurations:yaml:{VERSION}'
}