io.github.mirko-felice.testkit
owner: Mirko Felice
Gradle插件,帮助用户使用testkit测试自己的插件。
https://github.com/mirko-felice/gradle-plugin-testkit
源代码: https://github.com/mirko-felice/gradle-plugin-testkit.git
使用 插件DSL
plugins {
id("io.github.mirko-felice.testkit") version "0.9.0"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.mirko-felice.testkit:gradle-plugin:0.9.0")
}
}
apply(plugin = "io.github.mirko-felice.testkit")