Search Gradle plugins

Version 0.5.7 (latest)

Created 25 September 2019.

Gradle Allure Plugin

Using the plugins DSL:

plugins {
  id("com.github.iherasymenko.gradle.allure") version "0.5.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.iherasymenko.gradle.allure:gradle-allure-plugin:0.5.7")
  }
}

apply(plugin = "com.github.iherasymenko.gradle.allure")

Using the plugins DSL:

plugins {
  id "com.github.iherasymenko.gradle.allure" version "0.5.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.iherasymenko.gradle.allure:gradle-allure-plugin:0.5.7"
  }
}

apply plugin: "com.github.iherasymenko.gradle.allure"

Learn how to apply plugins to subprojects