| plugins { | |
| id "java" | |
| } | |
| dependencies { | |
| testImplementation project(':runtime:org.eclipse.etrice.runtime.java') | |
| testImplementation 'junit:junit:4.12' | |
| } | |
| sourceSets.test.java.srcDirs = ['src'] | |
| test.workingDir = buildDir | |
| test.reports.junitXml.destination = file("$buildDir/log") | |
| test.reports.html.enabled = false |