2022-03-07 15:46:07 +00:00
|
|
|
apply plugin: 'kotlin'
|
2022-03-08 17:14:37 +00:00
|
|
|
apply plugin: 'net.corda.plugins.cordapp'
|
|
|
|
apply plugin: 'net.corda.plugins.cordformation'
|
|
|
|
apply plugin: 'net.corda.plugins.quasar-utils'
|
2022-03-07 15:46:07 +00:00
|
|
|
apply plugin: 'net.corda.plugins.publish-utils'
|
|
|
|
apply plugin: 'com.jfrog.artifactory'
|
|
|
|
|
2022-03-08 17:14:37 +00:00
|
|
|
cordapp {
|
|
|
|
targetPlatformVersion 9
|
|
|
|
minimumPlatformVersion 9
|
|
|
|
workflow {
|
|
|
|
name "CorDapp with enclave flows"
|
|
|
|
vendor "R3"
|
|
|
|
licence "Apache License, Version 2.0"
|
|
|
|
versionId 1
|
|
|
|
}
|
|
|
|
signing {
|
|
|
|
enabled false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-07 15:46:07 +00:00
|
|
|
dependencies {
|
|
|
|
compile group: "org.jetbrains.kotlin", name: "kotlin-stdlib-jdk8", version: kotlin_version
|
|
|
|
compile group: "org.jetbrains.kotlin", name: "kotlin-reflect", version: kotlin_version
|
|
|
|
|
|
|
|
compile group: "com.typesafe", name: "config", version: typesafe_config_version
|
|
|
|
|
|
|
|
compile project(":core")
|
2022-03-08 17:14:37 +00:00
|
|
|
compile project(":node-api")
|
|
|
|
compile project(":serialization")
|
2022-03-07 15:46:07 +00:00
|
|
|
|
|
|
|
// test dependencies
|
|
|
|
testImplementation "junit:junit:$junit_version"
|
|
|
|
testCompile group: "org.jetbrains.kotlin", name: "kotlin-test", version: kotlin_version
|
2022-03-08 17:14:37 +00:00
|
|
|
|
|
|
|
testCompile project(":node-driver")
|
|
|
|
testCompile project(":finance")
|
2022-03-07 15:46:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
jar {
|
|
|
|
baseName 'corda-common-mock-enclave'
|
|
|
|
}
|
|
|
|
|
|
|
|
publish {
|
|
|
|
name jar.baseName
|
|
|
|
}
|