bcal.hebcal-api.2.1.6.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 hebcal-api Show documentation
Show all versions of hebcal-api Show documentation
A Java API encapsulating HebCal's REST API.
module info.tomfi.hebcal.shabbat {
requires java.net.http;
requires com.fasterxml.jackson.annotation;
requires com.fasterxml.jackson.core;
requires com.fasterxml.jackson.databind;
// the following are needed for compile time only
requires static auto.value.annotations;
requires static com.google.auto.service;
exports info.tomfi.hebcal.shabbat.request;
exports info.tomfi.hebcal.shabbat.response;
exports info.tomfi.hebcal.shabbat.tools;
uses info.tomfi.hebcal.shabbat.ShabbatAPI;
provides info.tomfi.hebcal.shabbat.ShabbatAPI with
info.tomfi.hebcal.shabbat.impl.ShabbatAPIProvider;
}