Search Gradle plugins

dev.projektor.publish

Automatically publish test reports to a Projektor report server

https://projektor.dev/docs/gradle-plugin/

Sources: https://github.com/craigatk/projektor

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.projektor.publish") version "1.0.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("dev.projektor:gradle-plugin:1.0.2")
      }
    }
    
    apply(plugin = "dev.projektor.publish")
  • Applying plugins to all subprojects .