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 "org.junit.jupiter:junit-jupiter-api:${junit_jupiter_version}" testImplementation "org.junit.vintage:junit-vintage-engine:${junit_vintage_version}" testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junit_jupiter_version}" testRuntimeOnly "org.junit.platform:junit-platform-launcher:${junit_platform_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 }