com.github.iherasymenko.gradle.allure
所有者: Ihor Herasymenko
Gradle Allure 插件
https://github.com/iherasymenko/gradle-allure-plugin
源代码: https://github.com/iherasymenko/gradle-allure-plugin
版本 0.5.7 (最新版)
0.5.7
创建于 2019 年 9 月 25 日。
Gradle Allure 插件
使用 plugins DSL
plugins {
id("com.github.iherasymenko.gradle.allure") version "0.5.7"
}
使用 旧版插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.iherasymenko.gradle.allure:gradle-allure-plugin:0.5.7")
}
}
apply(plugin = "com.github.iherasymenko.gradle.allure")
使用 plugins DSL
plugins {
id "com.github.iherasymenko.gradle.allure" version "0.5.7"
}
使用 旧版插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.iherasymenko.gradle.allure:gradle-allure-plugin:0.5.7"
}
}
apply plugin: "com.github.iherasymenko.gradle.allure"