Search Gradle plugins

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.28

Created 05 October 2020.

gradle-scalatest is a Gradle plugin for executing scalatest tests

Using the plugins DSL:

plugins {
  id("com.github.maiflai.scalatest") version "0.28"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.maiflai:gradle-scalatest:0.28")
  }
}

apply(plugin = "com.github.maiflai.scalatest")

Using the plugins DSL:

plugins {
  id "com.github.maiflai.scalatest" version "0.28"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.maiflai:gradle-scalatest:0.28"
  }
}

apply plugin: "com.github.maiflai.scalatest"

Learn how to apply plugins to subprojects