mirror of
https://github.com/corda/corda.git
synced 2024-12-29 09:18:58 +00:00
13619df0b1
# Conflicts: # node/src/integration-test/kotlin/net/corda/node/utilities/registration/NodeRegistrationTest.kt # testing/node-driver/src/main/kotlin/net/corda/testing/node/MockServices.kt # testing/test-utils/src/main/kotlin/net/corda/testing/dsl/TransactionDSLInterpreter.kt
42 lines
1.1 KiB
Groovy
42 lines
1.1 KiB
Groovy
apply plugin: 'kotlin'
|
|
apply plugin: 'kotlin-jpa'
|
|
apply plugin: 'net.corda.plugins.quasar-utils'
|
|
apply plugin: 'net.corda.plugins.publish-utils'
|
|
apply plugin: 'net.corda.plugins.api-scanner'
|
|
apply plugin: 'com.jfrog.artifactory'
|
|
|
|
description 'Testing utilities for Corda'
|
|
|
|
dependencies {
|
|
compile project(':test-common')
|
|
compile project(':node')
|
|
compile project(':client:mock')
|
|
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
|
|
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
|
compile "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
|
|
|
|
compile "com.google.guava:guava:$guava_version"
|
|
|
|
// Unit testing helpers.
|
|
compile "junit:junit:$junit_version"
|
|
compile "com.nhaarman:mockito-kotlin:1.1.0"
|
|
|
|
// Guava: Google test library (collections test suite)
|
|
compile "com.google.guava:guava-testlib:$guava_version"
|
|
|
|
// OkHTTP: Simple HTTP library.
|
|
compile "com.squareup.okhttp3:okhttp:$okhttp_version"
|
|
|
|
// integration test helpers
|
|
compile "org.springframework:spring-jdbc:$spring_jdbc_version"
|
|
}
|
|
|
|
jar {
|
|
baseName 'corda-test-utils'
|
|
}
|
|
|
|
publish {
|
|
name jar.baseName
|
|
}
|