-
-
Notifications
You must be signed in to change notification settings - Fork 265
Expand file tree
/
Copy pathmodule-info.java
More file actions
21 lines (15 loc) · 685 Bytes
/
module-info.java
File metadata and controls
21 lines (15 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module io.ebean.ddl.generator {
uses io.ebean.plugin.Plugin;
exports io.ebean.dbmigration;
provides io.ebean.dbmigration.DbMigration with io.ebeaninternal.dbmigration.DefaultDbMigration;
provides io.ebeaninternal.api.SpiDdlGeneratorProvider with io.ebeaninternal.dbmigration.DdlGeneratorProvider;
requires transitive io.ebean.ddl.runner;
requires transitive io.ebean.core;
requires transitive jakarta.xml.bind;
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 jakarta.xml.bind;
}