2021-05-15 20:03:23 +02:00
|
|
|
import org.xbib.content.SettingsLoader;
|
|
|
|
|
2020-05-19 16:06:39 +02:00
|
|
|
module org.xbib.content.json {
|
2021-05-15 20:03:23 +02:00
|
|
|
exports org.xbib.content.json;
|
2020-05-19 16:06:39 +02:00
|
|
|
exports org.xbib.content.json.diff;
|
|
|
|
exports org.xbib.content.json.jackson;
|
|
|
|
exports org.xbib.content.json.mergepatch;
|
|
|
|
exports org.xbib.content.json.patch;
|
|
|
|
exports org.xbib.content.json.pointer;
|
2021-05-15 20:03:23 +02:00
|
|
|
requires transitive org.xbib.content.core;
|
|
|
|
requires transitive org.xbib.content.settings;
|
2020-06-04 23:41:01 +02:00
|
|
|
requires transitive com.fasterxml.jackson.core;
|
|
|
|
requires transitive com.fasterxml.jackson.databind;
|
2021-05-15 20:03:23 +02:00
|
|
|
provides org.xbib.content.XContent with
|
|
|
|
org.xbib.content.json.JsonXContent;
|
|
|
|
provides SettingsLoader with
|
|
|
|
org.xbib.content.json.JsonSettingsLoader;
|
2020-05-19 16:06:39 +02:00
|
|
|
}
|