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.1.1 (latest)

5.1.1

Created 23 May 2023.

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.1.1"
}

See also:

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