use of org.apache.cayenne.project.ProjectModule in project cayenne by apache.
the class Main method appendModules.
protected Collection<Module> appendModules(Collection<Module> modules) {
// TODO: this is dirty... ServerModule is out of place inside the Modeler...
// If we need ServerRuntime for certain operations, those should start their own stack...
modules.add(new ServerModule());
modules.add(new ProjectModule());
modules.add(new DbSyncModule());
modules.add(new CayenneModelerModule());
return modules;
}
Aggregations