Files
ebean/ebean-test/src/main/java/module-info.java
T
Rob Bygrave ff43672f4e Move source to Jakarta (use ./jakarta-to-javax.sh)
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.
2023-09-11 23:31:01 +12:00

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;
}