mirror of
https://github.com/corda/corda.git
synced 2024-12-19 04:57:58 +00:00
e4615f7f47
* Initial version of new(old) dialog that won't print a stacktrace for rpc exceptions. * Decoupled CordaVersionProvider. Moved common files to common-logging to lower dependencies on the node explorer. * Removed unused import and duplicate documentation comment. * Moved error code rewrite policy in the new common/logging module according to PR review. * Removed extra line. * Updated log4j configurations with new package name where logging policies will be contained. * Included common-logging module with cliutils.
27 lines
718 B
Groovy
27 lines
718 B
Groovy
apply plugin: 'net.corda.plugins.publish-utils'
|
|
apply plugin: 'net.corda.plugins.api-scanner'
|
|
apply plugin: 'com.jfrog.artifactory'
|
|
|
|
dependencies {
|
|
compile project(':core')
|
|
compile project(':node-api')
|
|
compile project(':tools:cliutils')
|
|
compile project(":common-logging")
|
|
|
|
// Unit testing helpers.
|
|
compile "junit:junit:$junit_version"
|
|
compile 'org.hamcrest:hamcrest-library:1.3'
|
|
compile "com.nhaarman:mockito-kotlin:$mockito_kotlin_version"
|
|
compile "org.mockito:mockito-core:$mockito_version"
|
|
compile "org.assertj:assertj-core:$assertj_version"
|
|
compile "com.natpryce:hamkrest:$hamkrest_version"
|
|
}
|
|
|
|
jar {
|
|
baseName 'corda-test-common'
|
|
}
|
|
|
|
publish {
|
|
name jar.baseName
|
|
}
|