Search Gradle plugins

Version 1.0.4 (latest)

Created 30 October 2023.

Gradle plugin that provides tasks to modify project and modules versions.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects