2022-10-13 00:04:51 +02:00
|
|
|
pluginManagement {
|
|
|
|
// Declare the repositories where plugins are stored.
|
|
|
|
repositories {
|
|
|
|
gradlePluginPortal()
|
2022-10-14 14:20:24 +02:00
|
|
|
maven {
|
2022-11-25 16:50:16 +01:00
|
|
|
url = "$artifactoryContextUrl/"
|
2022-10-14 14:20:24 +02:00
|
|
|
}
|
2022-10-13 00:04:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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 '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'
|
|
|
|
|
|
|
|
|
2022-10-26 16:55:50 +02:00
|
|
|
|
|
|
|
|