搜索Gradle插件

版本 1.0.4 (最新版)

1.0.4

创建日期:2023年10月30日。

这是一个Gradle插件,它提供了修改项目和模块版本的插件。

使用 插件DSL

plugins {
  id("com.github.ldenisey.setversions") version "1.0.4"
}

使用 旧插件应用

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

apply(plugin = "com.github.ldenisey.setversions")

使用 插件DSL

plugins {
  id "com.github.ldenisey.setversions" version "1.0.4"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.ldenisey:gradle-setversions-plugin:1.0.4"
  }
}

apply plugin: "com.github.ldenisey.setversions"

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