Search Gradle plugins

Version 0.0.15

0.0.15

Created 25 June 2019.

Gradle plugin to automatically generate graph that represent Corda flows interactions

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.lucacampanella.plugin.flows-doc-builder-plugin") version "0.0.15"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.lucacampanella:plugin:0.0.15")
      }
    }
    
    apply(plugin = "com.github.lucacampanella.plugin.flows-doc-builder-plugin")
  • Applying plugins to all subprojects .