Search Gradle plugins

ru.iopump.qa.allure

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

http://allure.iopump.ru/

Sources: https://github.com/kochetkov-ma/allure-server-gradle

Version 0.1.2 (latest)

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"

Learn how to apply plugins to subprojects