mirror of
https://github.com/corda/corda.git
synced 2024-12-28 16:58:55 +00:00
53 lines
1.5 KiB
Groovy
53 lines
1.5 KiB
Groovy
/*
|
|
* R3 Proprietary and Confidential
|
|
*
|
|
* Copyright (c) 2018 R3 Limited. All rights reserved.
|
|
*
|
|
* The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law.
|
|
*
|
|
* Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited.
|
|
*/
|
|
|
|
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 'org.hamcrest:hamcrest-library:1.3'
|
|
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
|
|
}
|