mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
16 lines
378 B
Java
16 lines
378 B
Java
import io.ebeaninternal.server.autotune.AutoTuneServiceProvider;
|
|
import io.ebeaninternal.server.autotune.service.AutoTuneServiceFactory;
|
|
|
|
/**
|
|
* Provider of AutoTuneServiceProvider
|
|
*/
|
|
module io.ebean.autotune {
|
|
|
|
provides AutoTuneServiceProvider with AutoTuneServiceFactory;
|
|
|
|
requires io.ebean.api;
|
|
requires io.ebean.core;
|
|
requires java.xml;
|
|
requires java.xml.bind;
|
|
}
|