Search Gradle plugins

Version 0.32.1 (latest)

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"

Learn how to apply plugins to subprojects