Skip to content

Commit

Permalink
💚 fix jacocoRootReport
Browse files Browse the repository at this point in the history
  • Loading branch information
pron committed Jan 15, 2015
1 parent 05e9224 commit d470f3f
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 6 deletions.
14 changes: 8 additions & 6 deletions build.gradle
Expand Up @@ -14,11 +14,15 @@ buildscript {

allprojects {
apply plugin: 'com.github.kt3k.coveralls'
apply plugin: 'jacoco' // 'cobertura'

repositories {
mavenCentral()
}
}

subprojects {
apply plugin: 'java'
apply plugin: 'jacoco' // 'cobertura'
apply plugin: 'info.solidsoft.pitest'

sourceCompatibility = '1.7'
Expand Down Expand Up @@ -58,10 +62,6 @@ subprojects {
}
}

repositories {
mavenCentral()
}

dependencies {
testCompile 'junit:junit:4.12'
testCompile('org.truth0:truth:0.23') {
Expand Down Expand Up @@ -364,12 +364,14 @@ project (':capsule-build') {
task jacocoRootReport(type: org.gradle.testing.jacoco.tasks.JacocoReport) {
dependsOn = subprojects.test
sourceDirectories = files(subprojects.sourceSets.main.allSource.srcDirs)
classDirectories = files(subprojects.sourceSets.main.output)
classDirectories = files(subprojects.sourceSets.main.output)
executionData = files(subprojects.jacocoTestReport.executionData)
println("XXXX${executionData}")
reports {
html.enabled = true
xml.enabled = true
csv.enabled = false
xml.destination = "${buildDir}/reports/jacoco/test/jacocoTestReport.xml"
}
}

Expand Down
@@ -0,0 +1,26 @@
/*
* Capsule
* Copyright (c) 2014, Parallel Universe Software Co. and Contributors. All rights reserved.
*
* This program and the accompanying materials are licensed under the terms
* of the Eclipse Public License v1.0, available at
* http://www.eclipse.org/legal/epl-v10.html
*/
package co.paralleluniverse.capsule.container;

import org.junit.Test;
import static org.junit.Assert.*;
import org.junit.Ignore;

/**
*
* @author pron
*/
public class CapsuleContinerTest {

@Ignore
@Test
public void test() {
fail("Not yet implemented!");
}
}

0 comments on commit d470f3f

Please sign in to comment.