dev.projektor.publish
Owner: Craig Atkinson
Automatically publish test reports to a Projektor report server
https://projektor.dev/docs/gradle-plugin/
Sources: https://github.com/craigatk/projektor
Version 5.0.3
5.0.3
Created 10 July 2020.
Automatically publish test reports to a Projektor report server
Using the plugins DSL:
plugins {
id("dev.projektor.publish") version "5.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("dev.projektor:gradle-plugin:5.0.3")
}
}
apply(plugin = "dev.projektor.publish")
Using the plugins DSL:
plugins {
id "dev.projektor.publish" version "5.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "dev.projektor:gradle-plugin:5.0.3"
}
}
apply plugin: "dev.projektor.publish"