mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Moving the master branch to use jakarta based code and dependencies. Change to use ./jakarta-to-javax.sh to convert back to javax when releasing that.
30 lines
955 B
Java
30 lines
955 B
Java
|
|
module io.ebean.test {
|
|
|
|
exports io.ebean.test;
|
|
exports io.ebean.test.config;
|
|
exports io.ebean.test.config.platform;
|
|
exports io.ebean.test.config.provider;
|
|
|
|
provides io.ebeaninternal.api.SpiLoggerFactory with io.ebean.test.CapturingLoggerFactory;
|
|
provides io.ebean.config.AutoConfigure with io.ebean.test.config.AutoConfigureForTesting;
|
|
|
|
requires transitive io.ebean.datasource;
|
|
requires transitive io.ebean.core;
|
|
requires transitive io.ebean.ddl.generator;
|
|
requires com.fasterxml.jackson.annotation;
|
|
requires com.fasterxml.jackson.core;
|
|
requires com.fasterxml.jackson.databind;
|
|
requires com.fasterxml.jackson.datatype.jsr310;
|
|
|
|
requires transitive io.ebean.test.containers;
|
|
requires transitive org.assertj.core;
|
|
requires transitive jakarta.xml.bind;
|
|
requires transitive com.h2database;
|
|
|
|
// support testing
|
|
requires static org.junit.jupiter.api;
|
|
requires static jdk.management;
|
|
requires static io.avaje.jsr305x;
|
|
}
|