搜索Gradle插件

版本 0.0.9(最新版)

0.0.9

创建于2024年5月23日。

依赖项检查器和解锁文件聚合器

使用插件的DSL

plugins {
  id("com.carrotsearch.gradle.dependencychecks") version "0.0.9"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.carrotsearch.gradle.dependencychecks:gradle-dependencychecks-plugin:0.0.9")
  }
}

apply(plugin = "com.carrotsearch.gradle.dependencychecks")

使用插件的DSL

plugins {
  id "com.carrotsearch.gradle.dependencychecks" version "0.0.9"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.carrotsearch.gradle.dependencychecks:gradle-dependencychecks-plugin:0.0.9"
  }
}

apply plugin: "com.carrotsearch.gradle.dependencychecks"

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