2020-05-19 16:06:39 +02:00
|
|
|
module org.xbib.content.core {
|
|
|
|
exports org.xbib.content;
|
|
|
|
exports org.xbib.content.io;
|
|
|
|
exports org.xbib.content.json;
|
|
|
|
exports org.xbib.content.settings;
|
|
|
|
exports org.xbib.content.util.geo;
|
|
|
|
exports org.xbib.content.util.unit;
|
2020-06-04 23:41:01 +02:00
|
|
|
requires transitive com.fasterxml.jackson.core;
|
2020-05-19 16:06:39 +02:00
|
|
|
provides org.xbib.content.XContent with
|
|
|
|
org.xbib.content.json.JsonXContent;
|
|
|
|
provides org.xbib.content.settings.SettingsLoader with
|
|
|
|
org.xbib.content.settings.PropertiesSettingsLoader,
|
|
|
|
org.xbib.content.json.JsonSettingsLoader;
|
|
|
|
}
|