15f1043a39
* CORE-15561: Use Beta versions of the CSDE gradle plugin (#58) * CORE-15572: deleted stale todo comment (#59) * CORE-15541: release ga-rc12 prep * CORE:15541: update combined worker version to RC12 * CORE-15541: release ga build prep --------- Co-authored-by: Tony Lawson <tony.lawson@r3.com>
27 lines
1.0 KiB
Groovy
27 lines
1.0 KiB
Groovy
pluginManagement {
|
|
// Declare the repositories where plugins are stored.
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
mavenLocal()
|
|
}
|
|
|
|
// The plugin dependencies with versions of the plugins congruent with the specified CorDapp plugin version,
|
|
// Corda API version, and Kotlin version.
|
|
plugins {
|
|
id 'net.corda.plugins.cordapp-cpk2' version cordaPluginsVersion
|
|
id 'net.corda.plugins.cordapp-cpb2' version cordaPluginsVersion
|
|
id 'net.corda.cordapp.cordapp-configuration' version cordaApiVersion
|
|
id 'net.corda.plugins.csde' version csdePluginVersion
|
|
id 'org.jetbrains.kotlin.jvm' version kotlinVersion
|
|
id 'org.jetbrains.kotlin.plugin.jpa' version kotlinVersion
|
|
id 'org.jetbrains.kotlin.plugin.allopen' version kotlinVersion
|
|
}
|
|
}
|
|
|
|
// Root project name, used in naming the project as a whole and used in naming objects built by the project.
|
|
rootProject.name = 'csde-cordapp-template-java'
|
|
include ':workflows'
|
|
include ':contracts'
|
|
|