org.splitties.version-sync
Owner: Louis CAD
For library or Gradle plugin projects where you want to centralize where the version is defined.
https://github.com/LouisCAD/LibPublishingHelpers/tree/main/gradle-plugins/version-sync
Sources: https://github.com/LouisCAD/LibPublishingHelpers.git
Version 0.2.6 (latest)
0.2.6
Created 13 November 2023.
For library or Gradle plugin projects where you want to centralize where the version is defined.
Using the plugins DSL:
plugins {
id("org.splitties.version-sync") version "0.2.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.splitties.gradle:version-sync:0.2.6")
}
}
apply(plugin = "org.splitties.version-sync")
Using the plugins DSL:
plugins {
id "org.splitties.version-sync" version "0.2.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.splitties.gradle:version-sync:0.2.6"
}
}
apply plugin: "org.splitties.version-sync"