mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Add module-info support via multi-version jar (#2381)
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
|
||||
open 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;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user