搜索 Gradle 插件

版本 0.1.0 (最新版)

0.1.0

创建于 2021 年 9 月 17 日。

管理 Java 应用程序的库版本

使用 插件 DSL

plugins {
  id("com.github.skhatri.dependencyset") version "0.1.0"
}

使用 旧式插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.skhatri:com.github.skhatri.dependencyset.gradle.plugin:0.1.0")
  }
}

apply(plugin = "com.github.skhatri.dependencyset")

使用 插件 DSL

plugins {
  id "com.github.skhatri.dependencyset" version "0.1.0"
}

使用 旧式插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.skhatri:com.github.skhatri.dependencyset.gradle.plugin:0.1.0"
  }
}

apply plugin: "com.github.skhatri.dependencyset"

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