ru.iopump.qa.allure
Owner: Maxim Kochetkov
Add tasks and extension for aggregate allure results to zip archive / send to your allure server / generate report / get report url and send to your CI. See docs / examples: https://github.com/kochetkov-ma/allure-server-gradle
Sources: https://github.com/kochetkov-ma/allure-server-gradle
Version 0.1.2 (latest)
0.1.2
Created 11 October 2020.
Add tasks and extension for aggregate allure results to zip archive / send to your allure server / generate report / get report url and send to your CI. See docs / examples: https://github.com/kochetkov-ma/allure-server-gradle
Using the plugins DSL:
plugins {
id("ru.iopump.qa.allure") version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.ru.iopump.qa.allure:allure-server-gradle:0.1.2")
}
}
apply(plugin = "ru.iopump.qa.allure")
Using the plugins DSL:
plugins {
id "ru.iopump.qa.allure" version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.ru.iopump.qa.allure:allure-server-gradle:0.1.2"
}
}
apply plugin: "ru.iopump.qa.allure"