搜索Gradle插件

版本 0.2.0 (最新)

0.2.0

创建于 2022年4月11日。

用于将测试报告发布到远程服务器的插件

使用plugins DSL

plugins {
  id("com.github.kormachevt.qa.ci.reporter.plugin") version "0.2.0"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.kormachevt:com.github.kormachevt.qa.ci.reporter.plugin:0.2.0")
  }
}

apply(plugin = "com.github.kormachevt.qa.ci.reporter.plugin")

使用plugins DSL

plugins {
  id "com.github.kormachevt.qa.ci.reporter.plugin" version "0.2.0"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.kormachevt:com.github.kormachevt.qa.ci.reporter.plugin:0.2.0"
  }
}

apply plugin: "com.github.kormachevt.qa.ci.reporter.plugin"

学习如何将插件应用于子项目