Search Gradle plugins

Version 1.2.2-beta2

Created 06 September 2020.

Send jacoco coverage data to coveralls.io

Using the plugins DSL:

plugins {
  id("com.github.nbaztec.coveralls-jacoco") version "1.2.2-beta2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.nbaztec:coveralls-jacoco-gradle-plugin:1.2.2-beta2")
  }
}

apply(plugin = "com.github.nbaztec.coveralls-jacoco")

Using the plugins DSL:

plugins {
  id "com.github.nbaztec.coveralls-jacoco" version "1.2.2-beta2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.nbaztec:coveralls-jacoco-gradle-plugin:1.2.2-beta2"
  }
}

apply plugin: "com.github.nbaztec.coveralls-jacoco"

Learn how to apply plugins to subprojects