// 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. apply plugin: 'kotlin' apply plugin: CanonicalizerPlugin apply plugin: 'net.corda.plugins.publish-utils' apply plugin: 'net.corda.plugins.quasar-utils' apply plugin: 'net.corda.plugins.cordapp' apply plugin: 'com.jfrog.artifactory' description 'Corda Experimental Confidential Identities' dependencies { cordaCompile project(':core') testCompile "org.jetbrains.kotlin:kotlin-test:$kotlin_version" testCompile "junit:junit:$junit_version" // 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 testCompile "org.assertj:assertj-core:$assertj_version" } jar { baseName 'corda-confidential-identities' } publish { name jar.baseName }