com.github.maiflai.scalatest
Owner: May Fly
A plugin to enable the use of scalatest in a gradle scala project.
https://github.com/maiflai/gradle-scalatest
Version 0.32 (latest)
0.32
Created 17 December 2021.
gradle-scalatest is a Gradle plugin for executing scalatest tests
Using the plugins DSL:
plugins {
id("com.github.maiflai.scalatest") version "0.32"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.maiflai:gradle-scalatest:0.32")
}
}
apply(plugin = "com.github.maiflai.scalatest")
Using the plugins DSL:
plugins {
id "com.github.maiflai.scalatest" version "0.32"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.maiflai:gradle-scalatest:0.32"
}
}
apply plugin: "com.github.maiflai.scalatest"