com.github.iherasymenko.gradle.allure
Owner: Ihor Herasymenko
Gradle Allure Plugin
https://github.com/iherasymenko/gradle-allure-plugin
Sources: https://github.com/iherasymenko/gradle-allure-plugin
Version 0.5.7 (latest)
0.5.7
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"