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 4.0.47

4.0.47

Created 24 November 2019.

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 "4.0.47"
}

See also:

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