Skip to content
Snippets Groups Projects
build.gradle 377 B
Newer Older
apply plugin: 'java-library'
sourceCompatibility = 1.8
targetCompatibility = 1.8
akwizgran's avatar
akwizgran committed
apply plugin: 'witness'

	implementation project(path: ':bramble-api', configuration: 'default')
akwizgran's avatar
akwizgran committed
dependencyVerification {
	verify = [
	]
}

// If a Java 6 JRE is available, check we're not using any Java 7 or 8 APIs
tasks.withType(JavaCompile) {
	useJava6StandardLibrary(it)