mirror of
https://github.com/corda/corda.git
synced 2024-12-19 04:57:58 +00:00
36 lines
831 B
Groovy
36 lines
831 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'
|
||
|
|
||
|
configurations {
|
||
|
integrationTestCompile.extendsFrom testCompile
|
||
|
integrationTestRuntime.extendsFrom testRuntime
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
cordaCompile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||
|
|
||
|
// Corda integration dependencies
|
||
|
cordaCompile project(':node')
|
||
|
|
||
|
// BFT-SMaRt
|
||
|
compile 'commons-codec:commons-codec:1.10'
|
||
|
compile 'com.github.bft-smart:library:master-v1.1-beta-g6215ec8-87'
|
||
|
|
||
|
testCompile "junit:junit:$junit_version"
|
||
|
testCompile project(':node-driver')
|
||
|
}
|
||
|
|
||
|
idea {
|
||
|
module {
|
||
|
downloadJavadoc = true // defaults to false
|
||
|
downloadSources = true
|
||
|
}
|
||
|
}
|
||
|
|
||
|
publish {
|
||
|
name 'corda-notary-bft-smart'
|
||
|
}
|