null

Uploads all artifacts belonging to configuration ':archives'

License

License

Categories

Categories

Gradle Build Tools
GroupId

GroupId

me.kolek.gradle
ArtifactId

ArtifactId

gradle-coveralls-plugin
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

null
Uploads all artifacts belonging to configuration ':archives'
Project URL

Project URL

https://github.com/ckolek/gradle-coveralls-plugin
Source Code Management

Source Code Management

https://github.com/ckolek/gradle-coveralls-plugin

Download gradle-coveralls-plugin

How to add to project

<!-- https://jarcasting.com/artifacts/me.kolek.gradle/gradle-coveralls-plugin/ -->
<dependency>
    <groupId>me.kolek.gradle</groupId>
    <artifactId>gradle-coveralls-plugin</artifactId>
    <version>1.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/me.kolek.gradle/gradle-coveralls-plugin/
implementation 'me.kolek.gradle:gradle-coveralls-plugin:1.0.0'
// https://jarcasting.com/artifacts/me.kolek.gradle/gradle-coveralls-plugin/
implementation ("me.kolek.gradle:gradle-coveralls-plugin:1.0.0")
'me.kolek.gradle:gradle-coveralls-plugin:jar:1.0.0'
<dependency org="me.kolek.gradle" name="gradle-coveralls-plugin" rev="1.0.0">
  <artifact name="gradle-coveralls-plugin" type="jar" />
</dependency>
@Grapes(
@Grab(group='me.kolek.gradle', module='gradle-coveralls-plugin', version='1.0.0')
)
libraryDependencies += "me.kolek.gradle" % "gradle-coveralls-plugin" % "1.0.0"
[me.kolek.gradle/gradle-coveralls-plugin "1.0.0"]

Dependencies

compile (4)

Group / Artifact Type Version
com.fasterxml.jackson.core : jackson-databind jar 2.9.2
org.apache.httpcomponents : httpclient jar 4.5.3
org.apache.httpcomponents : httpmime jar 4.5.3
org.eclipse.jgit : org.eclipse.jgit jar 4.9.0.201710071750-r

runtime (1)

Group / Artifact Type Version
com.fasterxml.jackson.datatype : jackson-datatype-jsr310 jar 2.9.2

Project Modules

There are no modules declared in this project.

gradle-coveralls-plugin

Gradle plugin to upload coverage to Coveralls

Build Status Coverage Status Maven Central Javadoc

Usage

  1. Make plugin available to Gradle build script

    buildscript {
        repositories {
            mavenCentral()
        }
        
        dependencies {
            classpath 'me.kolek.gradle:gradle-coveralls-plugin:1.0.0'
        }
    }
  2. Apply plugin to Gradle project

    apply plugin: 'me.kolek.coveralls'
  3. Configure Coveralls plugin extension

    coveralls {
        // use repo token from COVERALLS_REPO_TOKEN environment variable
        repoToken System.env.COVERALLS_REPO_TOKEN
        
        // upload JaCoCo coverage data
        jacoco()
        
        services {
            // use Codeship build environment values
            codeship()
            
            // use Travis CI build environment values
            travis()
            
            // use custom/local build environment values
            custom {
                // ...
            }
        }
    }
  4. Run tests, generate and upload code coverage

    gradle test jacocoTestReport uploadCodeCoverage
    

Versions

Version
1.0.0