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.48

Created 02 February 2020.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.net.corda.plugins:cordformation:4.0.48")
  }
}

apply(plugin = "net.corda.plugins.cordformation")

Using the plugins DSL:

plugins {
  id "net.corda.plugins.cordformation" version "4.0.48"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.net.corda.plugins:cordformation:4.0.48"
  }
}

apply plugin: "net.corda.plugins.cordformation"

Learn how to apply plugins to subprojects