Search Gradle plugins

net.corda.plugins.cordformation

Owner: R3 Corda

Cordformation allows you to build your own local Corda networks for development

https://github.com/corda/corda-gradle-plugins

Sources: https://github.com/corda/corda-gradle-plugins

Version 5.0.10

5.0.10

Created 08 June 2020.

Cordformation allows you to build your own local Corda networks for development

Add this plugin to your build using the plugins DSL:

plugins {
  id("net.corda.plugins.cordformation") version "5.0.10"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.net.corda.plugins:cordformation:5.0.10")
      }
    }
    
    apply(plugin = "net.corda.plugins.cordformation")
  • Applying plugins to all subprojects .