Skip to content

shradej1/gradle_cobertura

 
 

Repository files navigation

To use, add the following to your build.gradle file:

buildscript {
    apply from: 'https://github.com/valkolovos/gradle_cobertura/raw/master/ivy/gradle_cobertura/gradle_cobertura/1.0-rc4/coberturainit.gradle'
}


------------------------
This will add the 'cobertura' task to your project which instruments your code, executes your tests and outputs to build/reports/cobertura.

To build from source:
./gradlew uploadArchives

This will create a local jar which you can reference in your builds like this:

buildscript {
    repositories {
        add(new org.apache.ivy.plugins.resolver.FileSystemResolver()) {
            name = 'local_cobertura' // or whatever you want to put here
            addArtifactPattern '${ cobertura project directory }/ivy/[organization]/[module]/[revision]/[artifact]-[revision].[ext]' // replace 'cobertura project directory' with real directory
            addIvyPattern '${ cobertura project directory }/ivy/[organization]/[module]/[revision]/ivy.xml'
        }
    }
    dependencies {
        classpath 'gradle_cobertura:gradle_cobertura:1.0-rc4'
    }
}

About

Gradle Cobertura Plugin

Resources

Stars

Watchers

Forks

Packages

No packages published