-
Notifications
You must be signed in to change notification settings - Fork 2
Home
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.
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.
dependencies {
implementation("io.github.wasabithumb:jtoml:VERSION")
}
dependencies {
implementation 'io.github.wasabithumb:jtoml:VERSION'
}
<dependencies>
<dependency>
<groupId>io.github.wasabithumb</groupId>
<artifactId>jtoml</artifactId>
<version>VERSION</version>
<scope>compile</scope>
</dependency>
</dependencies>