dev.mythicdrops.gradle.convention.jvm-test-suite
拥有者: Richard Harrah
MythicDrops JVM Test Suite Gradle项目的通用约定。
https://github.com/MythicDrops/mythicdrops-gradle-plugin
源代码: https://github.com/MythicDrops/mythicdrops-gradle-plugin
使用插件 DSL
plugins {
id("dev.mythicdrops.gradle.convention.jvm-test-suite") version "9.0.0"
}
使用旧版插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("dev.mythicdrops:mythicdrops-gradle-plugin:9.0.0")
}
}
apply(plugin = "dev.mythicdrops.gradle.convention.jvm-test-suite")
使用插件 DSL
plugins {
id "dev.mythicdrops.gradle.convention.jvm-test-suite" version "9.0.0"
}
使用旧版插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "dev.mythicdrops:mythicdrops-gradle-plugin:9.0.0"
}
}
apply plugin: "dev.mythicdrops.gradle.convention.jvm-test-suite"