ch.tie.gradle.plugins.json2md
Owner:
the i-engineers
generates a markdown file from 'spring-configuration-metadata.json' to document your configuration properties
https://github.com/the-i-engineers/tie-gradle-plugins
Sources: https://github.com/the-i-engineers/tie-gradle-plugins.git
Version 1.4.0 (latest)
Created 23 November 2023.
generates a markdown file from 'spring-configuration-metadata.json' to document your configuration properties
Add this plugin to your build using the plugins DSL:
plugins {
id("ch.tie.gradle.plugins.json2md") version "1.4.0"
}
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("ch.tie.gradle.plugins.json2md:ch.tie.gradle.plugins.json2md.gradle.plugin:1.4.0") }
It can then be applied in the precompiled script plugin:plugins { id("ch.tie.gradle.plugins.json2md") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ch.tie.gradle.plugins.json2md:ch.tie.gradle.plugins.json2md.gradle.plugin:1.4.0") } } apply(plugin = "ch.tie.gradle.plugins.json2md")
- Applying plugins to all subprojects .