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)
Created 19 May 2023.
gradle-scalatest is a Gradle plugin for executing scalatest tests
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.ysohda.scalatest") version "0.32.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("io.github.ysohda.scalatest:io.github.ysohda.scalatest.gradle.plugin:0.32.1") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.ysohda.scalatest") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.ysohda.scalatest:io.github.ysohda.scalatest.gradle.plugin:0.32.1") } } apply(plugin = "io.github.ysohda.scalatest")
- Applying plugins to all subprojects .