当前位置: 首页 > 软件库 > 手机/移动开发 > >

refreshVersions

授权协议 MIT License
开发语言 Kotlin
所属分类 手机/移动开发
软件类型 开源软件
地区 不详
投 递 者 平俊茂
操作系统 Android
开源组织
适用人群 未知
 软件概览

What is refreshVersions? jmfayard.github.io/refreshVersions

refreshVersions helps Gradle users with the tedious manual work usually involved in adding and updating dependencies and their versions.

Usage

Setup

// settings.gradle(.kts)
plugins {
    // See https://jmfayard.github.io/refreshVersions
    id("de.fayard.refreshVersions") version "0.23.0"
}

refreshVersions { // Optional: configure the plugin
    // ...
}

Migrate project:

./gradlew refreshVersionsMigrate

Find available updates in versions.properties:

./gradlew refreshVersions

Cleanup versions availability comments:

./gradlew refreshVersionsCleanup

Documentation is at jmfayard.github.io/refreshVersions

  • 安装插件 文件添加内容:settings.gradle.kts (project) plugins { // See https://jmfayard.github.io/refreshVersions id("de.fayard.refreshVersions") version "0.23.0" } // ⬇ 参考层级 rootProject.name = "..." 点击