2019-02-17 11:47:38 +00:00
// This contains the SwapIdentitiesFlow which can be used for exchanging confidential identities as part of a flow.
// TODO: Merge this into core: the original plan was to develop it independently but in practice it's too widely used to break compatibility now, as finance uses it.
2017-09-18 13:19:20 +00:00
apply plugin: 'kotlin'
apply plugin: 'net.corda.plugins.publish-utils'
apply plugin: 'net.corda.plugins.quasar-utils'
2019-01-10 12:31:47 +00:00
apply plugin: 'net.corda.plugins.cordapp'
2017-09-18 13:19:20 +00:00
apply plugin: 'com.jfrog.artifactory'
description 'Corda Experimental Confidential Identities'
dependencies {
2019-01-10 12:31:47 +00:00
cordaCompile project ( ':core' )
2017-09-18 13:19:20 +00:00
2017-09-19 13:51:03 +00:00
testCompile "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
2019-05-15 15:40:12 +00:00
testImplementation "org.junit.jupiter:junit-jupiter-api:${junit_jupiter_version}"
2019-05-20 10:57:56 +00:00
testImplementation "junit:junit:$junit_version"
2019-05-15 15:40:12 +00:00
2019-05-20 10:57:56 +00:00
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:${junit_vintage_version}"
2019-05-15 15:40:12 +00:00
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junit_jupiter_version}"
testRuntimeOnly "org.junit.platform:junit-platform-launcher:${junit_platform_version}"
2017-09-18 13:19:20 +00:00
// Guava: Google test library (collections test suite)
testCompile "com.google.guava:guava-testlib:$guava_version"
// Bring in the MockNode infrastructure for writing protocol unit tests.
testCompile project ( ":node-driver" )
// AssertJ: for fluent assertions for testing
2017-09-19 13:51:03 +00:00
testCompile "org.assertj:assertj-core:$assertj_version"
2017-09-18 13:19:20 +00:00
}
jar {
baseName 'corda-confidential-identities'
}
publish {
name jar . baseName
}