com.github.joselion.pretty-jupiter
所有者: FelipeSanchez
Gradle 插件,用于以漂亮的 Mocha.js 风格记录 JUnit Jupiter 测试
https://github.com/FelipeSanchez/pretty-jupiter
来源: https://github.com/FelipeSanchez/pretty-jupiter.git
使用 plugins DSL
plugins {
id("com.github.joselion.pretty-jupiter") version "1.7.0"
}
使用 遗留插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.joselion:pretty-jupiter:1.7.0")
}
}
apply(plugin = "com.github.joselion.pretty-jupiter")
使用 plugins DSL
plugins {
id "com.github.joselion.pretty-jupiter" version "1.7.0"
}
使用 遗留插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.joselion:pretty-jupiter:1.7.0"
}
}
apply plugin: "com.github.joselion.pretty-jupiter"