Search Gradle plugins

Version 1.0.0 (latest)

Created 06 September 2022.

Update the build data from a declared file ensuring various build files stay in sync

Using the plugins DSL:

plugins {
  id("com.legyver.build-data") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.legyver:build-data:1.0.0")
  }
}

apply(plugin = "com.legyver.build-data")

Using the plugins DSL:

plugins {
  id "com.legyver.build-data" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.legyver:build-data:1.0.0"
  }
}

apply plugin: "com.legyver.build-data"

Learn how to apply plugins to subprojects