2021-05-17 16:54:24 +02:00
|
|
|
import org.xbib.content.XContent;
|
2021-05-15 20:03:23 +02:00
|
|
|
import org.xbib.content.SettingsLoader;
|
|
|
|
import org.xbib.content.properties.PropertiesSettingsLoader;
|
|
|
|
|
2020-05-19 16:06:39 +02:00
|
|
|
module org.xbib.content.core {
|
2021-05-17 16:54:24 +02:00
|
|
|
uses XContent;
|
2021-05-15 20:03:23 +02:00
|
|
|
uses SettingsLoader;
|
2020-05-19 16:06:39 +02:00
|
|
|
exports org.xbib.content.io;
|
2021-05-15 20:03:23 +02:00
|
|
|
exports org.xbib.content.properties;
|
2020-05-19 16:06:39 +02:00
|
|
|
exports org.xbib.content.util.geo;
|
|
|
|
exports org.xbib.content.util.unit;
|
2021-05-15 20:03:23 +02:00
|
|
|
exports org.xbib.content.core;
|
|
|
|
requires transitive org.xbib.content;
|
|
|
|
requires transitive org.xbib.datastructures.tiny;
|
2021-05-17 16:54:24 +02:00
|
|
|
requires com.fasterxml.jackson.core;
|
2021-05-15 20:03:23 +02:00
|
|
|
provides SettingsLoader with PropertiesSettingsLoader;
|
2020-05-19 16:06:39 +02:00
|
|
|
}
|