io.github.ysohda.scalatest
所有者: Yukihiko Sohda
gradle-scalatest 是一个用于执行 scalatest 测试的 Gradle 插件
https://github.com/ysohda/gradle-scalatest
资源: https://github.com/ysohda/gradle-scalatest.git
使用 plugins DSL
plugins {
id("io.github.ysohda.scalatest") version "0.32.1"
}
使用 旧版插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.ysohda:gradle-scalatest:0.32.1")
}
}
apply(plugin = "io.github.ysohda.scalatest")
使用 plugins DSL
plugins {
id "io.github.ysohda.scalatest" version "0.32.1"
}
使用 旧版插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.ysohda:gradle-scalatest:0.32.1"
}
}
apply plugin: "io.github.ysohda.scalatest"