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'
|
2017-06-26 17:07:56 +00:00
|
|
|
apply plugin: 'com.jfrog.artifactory'
|
2017-03-21 19:45:12 +00:00
|
|
|
|
|
|
|
description 'Corda client mock modules'
|
|
|
|
|
|
|
|
// 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")
|
2018-12-19 18:02:51 +00:00
|
|
|
compile project(':finance:workflows')
|
|
|
|
compile project(':finance:contracts')
|
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')
|
|
|
|
}
|
2017-06-06 14:05:47 +00:00
|
|
|
|
|
|
|
jar {
|
|
|
|
baseName 'corda-mock'
|
2017-10-06 14:37:33 +00:00
|
|
|
manifest {
|
|
|
|
attributes 'Automatic-Module-Name': 'net.corda.client.mock'
|
|
|
|
}
|
2017-06-06 14:05:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
publish {
|
2017-07-18 11:34:56 +00:00
|
|
|
name jar.baseName
|
2017-09-29 15:55:26 +00:00
|
|
|
}
|