com.squedgy.test
所有者: David Faris
向测试任务添加基本的日志记录
https://github.com/squedgy/faris-test-plugin
来源: https://github.com/squedgy/faris-test-plugin
版本 1.0(最新版)
1.0
创建日期:2019年2月4日。
向测试任务添加基本的日志记录
使用plugins DSL
plugins {
id("com.squedgy.test") version "1.0"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.squedgy.test:faris-test-plugin:1.0")
}
}
apply(plugin = "com.squedgy.test")
使用plugins DSL
plugins {
id "com.squedgy.test" version "1.0"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.squedgy.test:faris-test-plugin:1.0"
}
}
apply plugin: "com.squedgy.test"