A GSON like approach to Toml
Go to file
2023-06-30 05:17:49 +01:00
src/main/java/fun/bb1/toml CHORE: licensing 2023-06-30 04:59:40 +01:00
jitpack.yml CHORE: Jitpack 2023-06-30 04:59:58 +01:00
LICENSE CHORE: licensing 2023-06-30 04:59:40 +01:00
pom.xml CHORE: fill out pom.xml 2023-06-30 05:17:49 +01:00
README.md CHORE: start of readme 2023-06-30 05:07:15 +01:00

Objective TOML

Want this for YAML? Checkout ObjectiveYaml

A Java 17 GSON like approach to TOML

This project utilises tomlj internally

Serialization of an object is not supported, this simply replicates the functionality of JsonElement, JsonObject, JsonArray and JsonPrimitive from GSON for TOML

How to use

Simply import fun.bb1.toml.Toml and invoke #parseString() with your TOML.

import fun.bb1.toml.Toml;

...

TomlObject toml = Toml.parseString("example=1");

Where to get it

This project is hosted on my Maven Repository, you can grab it from there

<repository>
	<id>bb1-repository-releases</id>
	<name>BradBot_1's Repository</name>
	<url>https://repo.bb1.fun/releases</url>
</repository>
<dependency>
	<groupId>fun.bb1</groupId>
	<artifactId>objectivetoml</artifactId>
	<version><!-- The version you wish to install --></version>
</dependency>