gson-comments/gson/src/main/java/module-info.java

18 lines
478 B
Java
Raw Normal View History

2019-10-04 00:51:18 +02:00
/**
* Defines the Gson serialization/deserialization API.
* @since 2.8.6
*/
2022-11-24 17:49:25 +01:00
module io.gitlab.jfronny.gson {
2022-11-24 18:42:46 +01:00
exports io.gitlab.jfronny.gson;
exports io.gitlab.jfronny.gson.annotations;
exports io.gitlab.jfronny.gson.reflect;
exports io.gitlab.jfronny.gson.stream;
2023-01-21 14:27:59 +01:00
exports io.gitlab.jfronny.gson.util;
2020-05-09 17:37:21 +02:00
// Optional dependency on java.sql
requires static java.sql;
// Optional dependency on jdk.unsupported for JDK's sun.misc.Unsafe
requires static jdk.unsupported;
}