mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
43 lines
1.3 KiB
Java
43 lines
1.3 KiB
Java
module io.ebean.api {
|
|
|
|
uses io.ebean.config.AutoConfigure;
|
|
uses io.ebean.config.dbplatform.DatabasePlatformProvider;
|
|
uses io.ebean.datasource.DataSourceAlertFactory;
|
|
uses io.ebean.metric.MetricFactory;
|
|
uses io.ebean.service.SpiContainerFactory;
|
|
uses io.ebean.service.SpiRawSqlService;
|
|
uses io.ebean.service.SpiProfileLocationFactory;
|
|
uses io.ebean.service.SpiFetchGroupService;
|
|
|
|
requires transitive java.sql;
|
|
requires transitive io.avaje.config;
|
|
requires transitive io.avaje.lang;
|
|
requires transitive jakarta.persistence.api;
|
|
requires transitive io.ebean.annotation;
|
|
requires transitive io.ebean.datasource.api;
|
|
requires transitive io.avaje.applog;
|
|
|
|
requires static org.slf4j;
|
|
requires static io.ebean.types;
|
|
requires static com.fasterxml.jackson.core;
|
|
requires static com.fasterxml.jackson.databind;
|
|
requires static jakarta.servlet;
|
|
|
|
exports io.ebean;
|
|
exports io.ebean.bean;
|
|
exports io.ebean.cache;
|
|
exports io.ebean.meta;
|
|
exports io.ebean.config;
|
|
exports io.ebean.config.dbplatform;
|
|
exports io.ebean.event;
|
|
exports io.ebean.event.changelog;
|
|
exports io.ebean.common;
|
|
exports io.ebean.plugin;
|
|
exports io.ebean.metric;
|
|
exports io.ebean.service;
|
|
exports io.ebean.text;
|
|
exports io.ebean.text.json;
|
|
exports io.ebean.util;
|
|
|
|
}
|