mirror of
https://github.com/corda/corda.git
synced 2025-03-20 02:55:29 +00:00
Conflicts: docs/source/index.rst finance/build.gradle finance/src/integration-test/kotlin/net/corda/finance/flows/test/CashConfigDataFlowTest.kt node/src/test/java/net/corda/node/services/vault/VaultQueryJavaTests.java samples/simm-valuation-demo/build.gradle
37 lines
797 B
Groovy
37 lines
797 B
Groovy
apply plugin: 'kotlin'
|
|
apply plugin: 'kotlin-jpa'
|
|
apply plugin: 'idea'
|
|
apply plugin: 'net.corda.plugins.cordapp'
|
|
apply plugin: 'net.corda.plugins.publish-utils'
|
|
apply plugin: 'net.corda.plugins.quasar-utils'
|
|
|
|
dependencies {
|
|
cordaCompile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
|
|
// Corda integration dependencies
|
|
cordaCompile project(':node')
|
|
|
|
testCompile "junit:junit:$junit_version"
|
|
testCompile project(':node-driver')
|
|
}
|
|
|
|
idea {
|
|
module {
|
|
downloadJavadoc = true // defaults to false
|
|
downloadSources = true
|
|
}
|
|
}
|
|
|
|
publish {
|
|
name 'corda-notary-jpa'
|
|
}
|
|
|
|
cordapp {
|
|
info {
|
|
name "net/corda/notary/jpa"
|
|
vendor "R3"
|
|
targetPlatformVersion corda_platform_version.toInteger()
|
|
minimumPlatformVersion 1
|
|
}
|
|
}
|