Search Gradle plugins

tech.kronicle.dependencies-file

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.21

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.21"
}

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.21")
  }
}

apply(plugin = "tech.kronicle.dependencies-file")

Using the plugins DSL:

plugins {
  id "tech.kronicle.dependencies-file" version "0.1.21"
}

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.21"
  }
}

apply plugin: "tech.kronicle.dependencies-file"

Learn how to apply plugins to subprojects