mirror of
https://github.com/ebean-orm/ebean.git
synced 2026-09-23 03:25:01 +00:00
* fix jackson NCDF error split jackson SPI impl into it's own module * Restore format * Restore format * Trim up dependencies * Rename module to ebean-core-json --------- Co-authored-by: Rob Bygrave <robin.bygrave@gmail.com>
10 lines
259 B
Java
10 lines
259 B
Java
module io.ebean.core.json {
|
|
|
|
requires io.ebean.api;
|
|
|
|
requires transitive com.fasterxml.jackson.core;
|
|
exports io.ebeaninternal.json to io.ebean.test, io.ebean.core;
|
|
|
|
provides io.ebean.service.BootstrapService with io.ebeaninternal.json.DJsonService;
|
|
}
|