Skip to content

Repository files navigation

The following project is a reimplementation of YAMLParser which supports many new data formats.

As of right now, the supported formats are:

  • YAML
  • JSON
  • XML
  • TOML

Each one of them can be retrieved singularly using its name, or by loading the whole project to retrieve all of them simultaneously.

Importing the whole project

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}'
}

Importing just one data format (YAML)

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}'
}

About

A reimplementation of Fulminazzo/YAMLParser to support multiple data formats

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages