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.22 (latest)

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.

Add this plugin to your build using the plugins DSL:

plugins {
  id("tech.kronicle.dependencies-file") version "0.1.22"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("tech.kronicle.dependencies-file:tech.kronicle.dependencies-file.gradle.plugin:0.1.22")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("tech.kronicle.dependencies-file")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("tech.kronicle.dependencies-file:tech.kronicle.dependencies-file.gradle.plugin:0.1.22")
      }
    }
    
    apply(plugin = "tech.kronicle.dependencies-file")
  • Applying plugins to all subprojects .