Skip to content
Snippets Groups Projects
Commit 3315d73a authored by dgelessus's avatar dgelessus
Browse files

Re-enable jacoco plugin

parent 964102ed
Branches
Tags
No related merge requests found
apply plugin: 'java' apply plugin: 'java'
apply plugin: 'eclipse' apply plugin: 'eclipse'
apply plugin: 'maven' apply plugin: 'maven'
//apply plugin: 'jacoco' apply plugin: 'jacoco'
project.version = '1.1.3-SNAPSHOT' project.version = '1.1.3-SNAPSHOT'
project.group = 'de.hhu.stups' project.group = 'de.hhu.stups'
...@@ -52,17 +52,17 @@ dependencies { ...@@ -52,17 +52,17 @@ dependencies {
testCompile (group: 'junit', name: 'junit', version: '4.12') testCompile (group: 'junit', name: 'junit', version: '4.12')
} }
// jacoco { jacoco {
// toolVersion = "0.7.1.201405082137" toolVersion = "0.7.1.201405082137"
// reportsDir = file("$buildDir/customJacocoReportDir") reportsDir = file("$buildDir/customJacocoReportDir")
// } }
// type 'gradle tla2b jacocoIntegrationTestReport' in order to run the jacoco code coverage analysis // type 'gradle tla2b jacocoIntegrationTestReport' in order to run the jacoco code coverage analysis
// task jacocoIntegrationTestReport(type: JacocoReport) { task jacocoIntegrationTestReport(type: JacocoReport) {
// sourceSets sourceSets.main sourceSets sourceSets.main
// //executionData files('build/jacoco/integrationTests.exec') //executionData files('build/jacoco/integrationTests.exec')
// executionData fileTree(project.rootDir.absolutePath).include("**/build/jacoco/*.exec") executionData fileTree(project.rootDir.absolutePath).include("**/build/jacoco/*.exec")
// } }
test { test {
exclude('testing') exclude('testing')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment