mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Fix Eclipse tests
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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
-1
@@ -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;
|
||||
Reference in New Issue
Block a user