搜索 Gradle 插件

版本 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"

了解如何将插件应用于子项目