Skip to content
Snippets Groups Projects
build.gradle 343 B
Newer Older
akwizgran's avatar
akwizgran committed
apply plugin: 'java'
sourceCompatibility = 1.7
targetCompatibility = 1.7

apply plugin: 'witness'

dependencies {
	compile project(':bramble-core')
	compile fileTree(dir: 'libs', include: '*.jar')

	testCompile project(path: ':bramble-core', configuration: 'testOutput')
}

tasks.withType(Test) {
	systemProperty 'java.library.path', 'libs'
akwizgran's avatar
akwizgran committed
}