搜索 Gradle 插件

版本 0.32.1 (最新版本)

0.32.1

创建时间 2023年5月19日。

gradle-scalatest 是一个用于执行 scalatest 测试的 Gradle 插件

使用 plugins DSL

plugins {
  id("io.github.ysohda.scalatest") version "0.32.1"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.ysohda:gradle-scalatest:0.32.1")
  }
}

apply(plugin = "io.github.ysohda.scalatest")

使用 plugins DSL

plugins {
  id "io.github.ysohda.scalatest" version "0.32.1"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.ysohda:gradle-scalatest:0.32.1"
  }
}

apply plugin: "io.github.ysohda.scalatest"

学习如何将插件应用于子项目