搜索Gradle插件

版本 1.0.22(最新版)

1.0.22

创建于 2023 年 4 月 4 日。

使用Kotlin DSL和可重用块创建dependabot.yml配置

使用 插件 DSL

plugins {
  id("io.github.benkeil.dependabotkt") version "1.0.22"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.benkeil:dependabot-kt:1.0.22")
  }
}

apply(plugin = "io.github.benkeil.dependabotkt")

使用 插件 DSL

plugins {
  id "io.github.benkeil.dependabotkt" version "1.0.22"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.benkeil:dependabot-kt:1.0.22"
  }
}

apply plugin: "io.github.benkeil.dependabotkt"

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