Search Gradle plugins

Version 1

Created 18 June 2019.

Plugin that creates pretty looking integration test reports for D3 projects

Using the plugins DSL:

plugins {
  id("com.github.dolgopolovwork.testreport") version "1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.dolgopolovwork:testreport:1")
  }
}

apply(plugin = "com.github.dolgopolovwork.testreport")

Using the plugins DSL:

plugins {
  id "com.github.dolgopolovwork.testreport" version "1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.dolgopolovwork:testreport:1"
  }
}

apply plugin: "com.github.dolgopolovwork.testreport"

Learn how to apply plugins to subprojects