Add module-info support via multi-version jar (#2381)

This commit is contained in:
Rob Bygrave
2021-09-21 14:37:51 +12:00
committed by GitHub
parent b450227b13
commit 0bf8c9eb64
43 changed files with 390 additions and 222 deletions
@@ -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;
}