2017-03-21 19:45:12 +00:00
|
|
|
apply plugin: 'kotlin'
|
|
|
|
apply plugin: 'net.corda.plugins.quasar-utils'
|
|
|
|
apply plugin: 'net.corda.plugins.publish-utils'
|
|
|
|
|
|
|
|
description 'Corda client mock modules'
|
|
|
|
|
|
|
|
//noinspection GroovyAssignabilityCheck
|
|
|
|
configurations {
|
|
|
|
// we don't want isolated.jar in classPath, since we want to test jar being dynamically loaded as an attachment
|
|
|
|
runtime.exclude module: 'isolated'
|
|
|
|
}
|
|
|
|
|
|
|
|
// To find potential version conflicts, run "gradle htmlDependencyReport" and then look in
|
|
|
|
// build/reports/project/dependencies/index.html for green highlighted parts of the tree.
|
|
|
|
|
|
|
|
dependencies {
|
2017-03-22 15:52:54 +00:00
|
|
|
compile project(":core")
|
|
|
|
compile project(':finance')
|
2017-03-21 19:45:12 +00:00
|
|
|
|
|
|
|
// Unit testing helpers.
|
|
|
|
testCompile "junit:junit:$junit_version"
|
|
|
|
testCompile "org.assertj:assertj-core:${assertj_version}"
|
|
|
|
|
|
|
|
testCompile project(':test-utils')
|
|
|
|
}
|