All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.webpieces.plugins.hsqldb.H2DbPlugin Maven / Gradle / Ivy

Go to download

Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property

The newest version!
package org.webpieces.plugins.hsqldb;

import java.util.List;

import org.webpieces.router.api.routing.Plugin;
import org.webpieces.router.api.routing.Routes;

import com.google.common.collect.Lists;
import com.google.inject.Module;

public class H2DbPlugin implements Plugin {

	@Override
	public List getGuiceModules() {
		return Lists.newArrayList(new H2DbModule());
	}

	@Override
	public List getRouteModules() {
		return Lists.newArrayList(new H2DbRoutes());
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy