io.github.ysohda.scalatest
Owner: Yukihiko Sohda
gradle-scalatest is a Gradle plugin for executing scalatest tests
https://github.com/ysohda/gradle-scalatest
Sources: https://github.com/ysohda/gradle-scalatest.git
Version 0.32.1 (latest)
0.32.1
Created 19 May 2023.
gradle-scalatest is a Gradle plugin for executing scalatest tests
Using the plugins DSL:
plugins {
id("io.github.ysohda.scalatest") version "0.32.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.ysohda:gradle-scalatest:0.32.1")
}
}
apply(plugin = "io.github.ysohda.scalatest")
Using the plugins DSL:
plugins {
id "io.github.ysohda.scalatest" version "0.32.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.ysohda:gradle-scalatest:0.32.1"
}
}
apply plugin: "io.github.ysohda.scalatest"