use of org.webpieces.plugin.documentation.DocumentationConfig in project webpieces by deanhiller.
the class DevServerMeta method getPlugins.
@Override
public List<Plugin> getPlugins() {
List<Plugin> prodPlugins = prodMeta.getPlugins();
List<Plugin> devPlugins = Lists.newArrayList(// so the in-memory H2 DB can be queried to debug issues with your application code
new H2DbPlugin(new H2DbConfig()), new WebpiecesDocumentationPlugin(new DocumentationConfig()));
prodPlugins.addAll(devPlugins);
return prodPlugins;
}
Aggregations