Skip to content
Xavier Pedraza edited this page Aug 18, 2025 · 4 revisions

Welcome to the JToml Wiki! This is a textual resource detailing how to use all of JToml's features. For a more technical resource, see the Javadocs.

Getting JToml

JToml releases are published to Maven central. Find the latest version and use the appropriate syntax for your build script. You may choose to require jtoml and any number of optional modules, or require jtoml-all which has JPMS (module) support. Note that jtoml-all does not automatically require transient dependencies like Gson or Configurate.

Gradle (Kotlin)

dependencies {
    implementation("io.github.wasabithumb:jtoml:VERSION")
}

Gradle (Groovy)

dependencies {
    implementation 'io.github.wasabithumb:jtoml:VERSION'
}

Maven

<dependencies>
    <dependency>
        <groupId>io.github.wasabithumb</groupId>
        <artifactId>jtoml</artifactId>
        <version>VERSION</version>
        <scope>compile</scope>
    </dependency>
</dependencies>
Clone this wiki locally