搜索 Gradle 插件

ch.tutteli.gradle.plugins.spek

所有者: Robert Stoll

应用.junitjacoco 插件并将 Spek 作为引擎。应用 kotlin 插件并设置编译和测试依赖关系。

https://github.com/robstoll/tutteli-gradle-plugins

来源: https://github.com/robstoll/tutteli-gradle-plugins.git

版本 5.0.1(最新版)

5.0.1

创建于 2024 年 1 月 24 日。

应用.junitjacoco 插件并将 Spek 作为引擎。应用 kotlin 插件并设置编译和测试依赖关系。

使用 插件 DSL

plugins {
  id("ch.tutteli.gradle.plugins.spek") version "5.0.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("ch.tutteli:tutteli-gradle-spek:5.0.1")
  }
}

apply(plugin = "ch.tutteli.gradle.plugins.spek")

使用 插件 DSL

plugins {
  id "ch.tutteli.gradle.plugins.spek" version "5.0.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "ch.tutteli:tutteli-gradle-spek:5.0.1"
  }
}

apply plugin: "ch.tutteli.gradle.plugins.spek"

了解如何将插件应用到子项目中