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

Add this plugin to your build using the plugins DSL:

plugins {
  id("ru.iopump.qa.allure") version "0.1.2"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("ru.iopump.qa.allure:ru.iopump.qa.allure.gradle.plugin:0.1.2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("ru.iopump.qa.allure")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("ru.iopump.qa.allure:ru.iopump.qa.allure.gradle.plugin:0.1.2")
      }
    }
    
    apply(plugin = "ru.iopump.qa.allure")
  • Applying plugins to all subprojects .