搜索 Gradle 插件

版本 1.0.5-beta (最新版)

1.0.5-beta

创建于 2021 年 11 月 23 日。

允许以简单方式运行 kranberry 测试的功能插件

使用 plugins DSL

plugins {
  id("io.github.kranberry-io.runtests") version "1.0.5-beta"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.kranberry-io:runtests:1.0.5-beta")
  }
}

apply(plugin = "io.github.kranberry-io.runtests")

使用 plugins DSL

plugins {
  id "io.github.kranberry-io.runtests" version "1.0.5-beta"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.kranberry-io:runtests:1.0.5-beta"
  }
}

apply plugin: "io.github.kranberry-io.runtests"

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