Refactor Json to JsonMapper, update Gradle to 9.5.1, and set Java 26 toolchain.

This commit is contained in:
CodingPhoenixx
2026-05-28 11:02:22 +02:00
parent f19f73a2cc
commit 2204c5df98
7 changed files with 20 additions and 13 deletions
@@ -0,0 +1,12 @@
package dev.coph.nextusweb.server.json;
import tools.jackson.databind.ObjectMapper;
public final class JsonMapper {
public static final ObjectMapper MAPPER = tools.jackson.databind.json.JsonMapper.builder()
// .addModule(new JavaTimeModule())
.build();
private JsonMapper() {}
}