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 9.0.0 (latest)
9.0.0
Created 12 April 2024.
Automatically publish test reports to a Projektor report server
Using the plugins DSL:
plugins {
id("dev.projektor.publish") version "9.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("dev.projektor:gradle-plugin:9.0.0")
}
}
apply(plugin = "dev.projektor.publish")
Using the plugins DSL:
plugins {
id "dev.projektor.publish" version "9.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "dev.projektor:gradle-plugin:9.0.0"
}
}
apply plugin: "dev.projektor.publish"