t.jollyday-core.0.31.0.source-code.module-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jollyday-core Show documentation
Show all versions of jollyday-core Show documentation
Core module of the jollyday library that contains the API for the developers and
the core concept how to retrieve holiday information for a country of jollyday.
module de.focus_shift.jollyday.core {
uses de.focus_shift.jollyday.core.spi.ConfigurationService;
opens de.focus_shift.jollyday.core.util;
opens descriptions;
opens focus_shift.de.jollyday.schema.holiday;
opens holidays;
requires java.xml;
requires org.slf4j;
requires org.threeten.extra;
exports de.focus_shift.jollyday.core;
exports de.focus_shift.jollyday.core.spi;
exports de.focus_shift.jollyday.core.util to
de.focus_shift.jollyday.jaxb,
de.focus_shift.jollyday.jackson,
de.focus_shift.jollyday.jackson.test,
de.focus_shift.jollyday.jaxb.test;
exports de.focus_shift.jollyday.core.parser.impl to
de.focus_shift.jollyday.jackson.test,
de.focus_shift.jollyday.jaxb.test;
}