搜索 Gradle 插件

ch.tutteli.spek

所有者: Robert Stoll

应用 junitjacoco 插件并定义 Spek 为引擎。应用 kotlin 插件并设置编译和测试依赖。

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

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

使用 插件 DSL

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

使用 旧版插件应用

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

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

使用 插件 DSL

plugins {
  id "ch.tutteli.spek" version "1.0.0"
}

使用 旧版插件应用

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

apply plugin: "ch.tutteli.spek"

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