mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#2374 - Bump to Java 11 and module-path
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
|
||||
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 org.slf4j;
|
||||
requires transitive io.ebean.datasource;
|
||||
requires transitive io.ebean.core;
|
||||
requires transitive io.ebean.ddl.generator;
|
||||
requires com.fasterxml.jackson.core;
|
||||
requires com.fasterxml.jackson.databind;
|
||||
requires com.fasterxml.jackson.datatype.jsr310;
|
||||
|
||||
requires transitive io.ebean.docker;
|
||||
requires transitive org.assertj.core;
|
||||
requires transitive java.xml.bind;
|
||||
requires transitive com.h2database;
|
||||
|
||||
// support testing
|
||||
requires static jdk.management;
|
||||
requires static io.avaje.jsr305x;
|
||||
}
|
||||
Reference in New Issue
Block a user