搜索 Gradle 插件

com.github.maiflai.scalatest

所有者: May Fly

一个允许在 Gradle Scala 项目中使用 scalatest 的插件。

https://github.com/maiflai/gradle-scalatest

版本 0.32(最新版本)

0.32

创建于 2021 年 12 月 17 日。

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

使用 插件 DSL

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

使用 旧版插件应用程序

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

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

使用 插件 DSL

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

使用 旧版插件应用程序

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

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

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