com.github.kormachevt.qa.ci.reporter.plugin
所有者: Tim Kormachev
用于将测试报告发布到远程服务器的插件
https://github.com/kormachevt/qa-ci-reporter
来源: https://github.com/kormachevt/qa-ci-reporter
使用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"