com.github.lucacampanella.plugin.flows-doc-builder-plugin
Owner: Luca Campanella
Gradle plugin to automatically generate graph that represent Corda flows interactions
https://github.com/lucacampanella/corda-flows-doc-builder
Sources: https://github.com/luca-campanella/corda-flows-doc-builder
Version 0.0.31 (latest)
0.0.31
Created 11 July 2019.
Gradle plugin to automatically generate graph that represent Corda flows interactions
Using the plugins DSL:
plugins {
id("com.github.lucacampanella.plugin.flows-doc-builder-plugin") version "0.0.31"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.lucacampanella:plugin:0.0.31")
}
}
apply(plugin = "com.github.lucacampanella.plugin.flows-doc-builder-plugin")
Using the plugins DSL:
plugins {
id "com.github.lucacampanella.plugin.flows-doc-builder-plugin" version "0.0.31"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.lucacampanella:plugin:0.0.31"
}
}
apply plugin: "com.github.lucacampanella.plugin.flows-doc-builder-plugin"