io.github.cjsoftware-plugin.Antlr4SyntaxRailroadDiagram
Owner: Chris James
Generate Syntax Railroad Diagram from Antlr4 Grammar
https://cjsoftware-plugin.github.io/Antlr4SyntaxRailroadDiagram
Sources: https://github.com/cjsoftware-plugin/Antlr4SyntaxRailroadDiagram
Version 1.0.0043 (latest)
Created 27 September 2022.
Generate Syntax Railroad Diagram from Antlr4 Grammar
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.cjsoftware-plugin.Antlr4SyntaxRailroadDiagram") version "1.0.0043"
}
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("io.github.cjsoftware-plugin.Antlr4SyntaxRailroadDiagram:io.github.cjsoftware-plugin.Antlr4SyntaxRailroadDiagram.gradle.plugin:1.0.0043") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.cjsoftware-plugin.Antlr4SyntaxRailroadDiagram") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.cjsoftware-plugin.Antlr4SyntaxRailroadDiagram:io.github.cjsoftware-plugin.Antlr4SyntaxRailroadDiagram.gradle.plugin:1.0.0043") } } apply(plugin = "io.github.cjsoftware-plugin.Antlr4SyntaxRailroadDiagram")
- Applying plugins to all subprojects .