tech.kronicle.dependencies-file
Owner: Simon Dean
This plugin outputs a `gradle-dependencies.yaml` file that can be committed to your Git repo and read by tools like Kronicle.
https://github.com/kronicle-tech/dependencies-file-gradle-plugin
Sources: https://github.com/kronicle-tech/dependencies-file-gradle-plugin.git
Version 0.1.22 (latest)
0.1.22
Created 07 July 2022.
This plugin outputs a `gradle-dependencies.yaml` file that can be committed to your Git repo and read by tools like Kronicle.
Using the plugins DSL:
plugins {
id("tech.kronicle.dependencies-file") version "0.1.22"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("tech.kronicle.dependencies-file:dependencies-file-gradle-plugin:0.1.22")
}
}
apply(plugin = "tech.kronicle.dependencies-file")
Using the plugins DSL:
plugins {
id "tech.kronicle.dependencies-file" version "0.1.22"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "tech.kronicle.dependencies-file:dependencies-file-gradle-plugin:0.1.22"
}
}
apply plugin: "tech.kronicle.dependencies-file"