Search Gradle plugins

Version 1.1.0 (latest)

Created 26 January 2024.

A plugin that provides the capability to publish code coverage to Bitbucket. Currently, only JaCoCo reports are supported.

Using the plugins DSL:

plugins {
  id("dev.turingcomplete.bitbucket-code-coverage") version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("dev.turingcomplete:gradle-bitbucket-code-coverage-plugin:1.1.0")
  }
}

apply(plugin = "dev.turingcomplete.bitbucket-code-coverage")

Using the plugins DSL:

plugins {
  id "dev.turingcomplete.bitbucket-code-coverage" version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "dev.turingcomplete:gradle-bitbucket-code-coverage-plugin:1.1.0"
  }
}

apply plugin: "dev.turingcomplete.bitbucket-code-coverage"

Learn how to apply plugins to subprojects