搜索 Gradle 插件

版本 0.3(最新版)

0.3

创建于 2014 年 11 月 14 日。

没有可用的版本描述。

使用 插件 DSL

plugins {
  id("com.github.lkishalmi.bill-of-materials") version "0.3"
}

使用 旧插件应用

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

apply(plugin = "com.github.lkishalmi.bill-of-materials")

使用 插件 DSL

plugins {
  id "com.github.lkishalmi.bill-of-materials" version "0.3"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.lkishalmi.gradle:gradle-bom-plugin:0.3"
  }
}

apply plugin: "com.github.lkishalmi.bill-of-materials"

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