Fix Eclipse tests

This commit is contained in:
Roland Praml
2022-04-12 09:34:18 +02:00
parent 6412e060e6
commit e65d9bdfe6
3 changed files with 12 additions and 4 deletions
@@ -1,8 +1,15 @@
module io.ebean.ddl.generator {
uses io.ebean.dbmigration.DbMigration;
uses io.ebean.plugin.Plugin;
uses io.ebean.config.dbplatform.DatabasePlatformProvider;
exports io.ebean.dbmigration;
provides io.ebean.plugin.Plugin with io.ebeaninternal.dbmigration.DbMigrationPlugin,io.ebeaninternal.dbmigration.DdlPlugin;
provides io.ebean.dbmigration.DbMigration with io.ebeaninternal.dbmigration.DefaultDbMigration;
requires transitive io.ebean.ddl.runner;
requires transitive io.ebean.core;
@@ -10,8 +17,9 @@ module io.ebean.ddl.generator {
requires io.ebean.core.type;
requires io.ebean.migration;
uses io.ebean.dbmigration.DbMigration;
// support existing tests
exports io.ebeaninternal.extraddl.model to io.ebean.test;
opens io.ebeaninternal.extraddl.model to java.xml.bind;
opens io.ebeaninternal.dbmigration.migration to java.xml.bind;
}
+2 -2
View File
@@ -1,5 +1,5 @@
module io.ebean.test {
// module must be open, so tests will pass
open module io.ebean.test {
exports io.ebean.test;
exports io.ebean.test.config;
@@ -1,4 +1,4 @@
package io.ebeaninternal.dbmigration;
package io.ebean.xtest.base;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;