use of org.webpieces.plugins.hsqldb.H2DbPlugin in project webpieces by deanhiller.
the class DeveloperMeta method getPlugins.
@Override
public List<Plugin> getPlugins() {
List<Plugin> prodPlugins = prodMeta.getPlugins();
List<Plugin> devPlugins = Lists.newArrayList(//This is only for the development server to expose a GUI to use http://localhost:9000/@db
new H2DbPlugin());
prodPlugins.addAll(devPlugins);
return prodPlugins;
}
Aggregations