搜索Gradle插件

版本 0.8.4 (最新版本)

0.8.4

创建于 2024年1月26日。

提供用于格式化和更新版本目录文件以带有最新依赖版本的任务。

使用 插件DSL

plugins {
  id("nl.littlerobots.version-catalog-update") version "0.8.4"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("nl.littlerobots.vcu:plugin:0.8.4")
  }
}

apply(plugin = "nl.littlerobots.version-catalog-update")

使用 插件DSL

plugins {
  id "nl.littlerobots.version-catalog-update" version "0.8.4"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "nl.littlerobots.vcu:plugin:0.8.4"
  }
}

apply plugin: "nl.littlerobots.version-catalog-update"

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