Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ad80588e9a0ed80ded7d35372172a9a4d9cdb6e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
plugins {
	id 'java'
}

dependencies {
	testCompile project(':runtime:org.eclipse.etrice.runtime.java')
	testCompile 'junit:junit:4.12'
}

sourceSets.test.java.srcDirs = ['src']

test.reports.html.enabled = false
test.reports.junitXml.destination = file('log')

clean.delete 'log'

Back to the top