dev.turingcomplete.bitbucket-code-coverage
Owner: Marcel Kliemannel
A plugin that provides the capability to publish code coverage to Bitbucket. Currently, only JaCoCo reports are supported.
https://github.com/marcelkliemannel/gradle-bitbucket-code-coverage-plugin
Sources: https://github.com/marcelkliemannel/gradle-bitbucket-code-coverage-plugin
Version 1.1.0 (latest)
1.1.0
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"