mirror of
https://github.com/corda/corda.git
synced 2024-12-20 05:28:21 +00:00
572c4af40c
* new network map object for network map, and verify signature and root in Signed network map and node info * fixup after rebase * * added certificate and key to network map server * move DigitalSignature.WithCert back to NetworkMap.kt, as its breaking API test, will raise another PR to move it back. * Make DigitalSignature.WithCert not extend WithKey, as per PR discussion. * various fixes after rebase. * move Network map back to core/node, as its breaking API test * revert unintended changes * move network map objects to node-api
16 lines
243 B
Groovy
16 lines
243 B
Groovy
apply plugin: 'net.corda.plugins.publish-utils'
|
|
apply plugin: 'com.jfrog.artifactory'
|
|
|
|
dependencies {
|
|
compile project(':core')
|
|
compile project(':node-api')
|
|
}
|
|
|
|
jar {
|
|
baseName 'corda-test-common'
|
|
}
|
|
|
|
publish {
|
|
name jar.baseName
|
|
}
|