com.legyver.build-data
Owner: Benjamin Arnold
Update the build data from a declared file ensuring various build files stay in sync
https://github.com/legyver-gradle-plugins/build-data
Sources: https://github.com/legyver-gradle-plugins/build-data.git
Version 1.0.0 (latest)
1.0.0
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"