gson-comments/gson/src/main/java/module-info.java
JFronny 51157e81e5
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Move some stuff around
2023-01-21 14:27:59 +01:00

18 lines
478 B
Java

/**
* Defines the Gson serialization/deserialization API.
* @since 2.8.6
*/
module io.gitlab.jfronny.gson {
exports io.gitlab.jfronny.gson;
exports io.gitlab.jfronny.gson.annotations;
exports io.gitlab.jfronny.gson.reflect;
exports io.gitlab.jfronny.gson.stream;
exports io.gitlab.jfronny.gson.util;
// Optional dependency on java.sql
requires static java.sql;
// Optional dependency on jdk.unsupported for JDK's sun.misc.Unsafe
requires static jdk.unsupported;
}