2016-08-30 13:50:02 +01:00
|
|
|
apply plugin: 'kotlin'
|
2017-07-12 14:09:49 +01:00
|
|
|
apply plugin: 'kotlin-jpa'
|
2016-11-18 14:41:06 +00:00
|
|
|
apply plugin: 'net.corda.plugins.quasar-utils'
|
|
|
|
apply plugin: 'net.corda.plugins.publish-utils'
|
2018-01-04 10:09:04 +00:00
|
|
|
apply plugin: 'net.corda.plugins.api-scanner'
|
2017-06-26 18:07:56 +01:00
|
|
|
apply plugin: 'com.jfrog.artifactory'
|
2016-08-30 13:50:02 +01:00
|
|
|
|
2016-12-06 10:49:46 +00:00
|
|
|
description 'Testing utilities for Corda'
|
|
|
|
|
2016-08-30 13:50:02 +01:00
|
|
|
dependencies {
|
2017-06-28 09:54:09 +01:00
|
|
|
compile project(':test-common')
|
2016-08-31 14:13:28 +01:00
|
|
|
compile project(':node')
|
2017-03-29 17:28:02 +01:00
|
|
|
compile project(':client:mock')
|
2016-08-30 13:50:02 +01:00
|
|
|
|
2018-04-24 14:03:41 +01:00
|
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
2016-08-30 13:50:02 +01:00
|
|
|
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
|
|
|
compile "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
|
|
|
|
|
2017-01-03 15:15:23 +01:00
|
|
|
compile "com.google.guava:guava:$guava_version"
|
2016-08-30 13:50:02 +01:00
|
|
|
|
|
|
|
// Unit testing helpers.
|
2017-01-03 15:15:23 +01:00
|
|
|
compile "junit:junit:$junit_version"
|
2018-02-27 10:22:30 +00:00
|
|
|
compile 'org.hamcrest:hamcrest-library:1.3'
|
2017-04-12 15:30:28 +01:00
|
|
|
compile "com.nhaarman:mockito-kotlin:1.1.0"
|
2016-08-19 16:27:50 +01:00
|
|
|
|
|
|
|
// Guava: Google test library (collections test suite)
|
2017-03-24 11:22:53 +00:00
|
|
|
compile "com.google.guava:guava-testlib:$guava_version"
|
2016-10-25 14:23:18 +01:00
|
|
|
|
|
|
|
// OkHTTP: Simple HTTP library.
|
2017-01-03 15:15:23 +01:00
|
|
|
compile "com.squareup.okhttp3:okhttp:$okhttp_version"
|
|
|
|
}
|
2017-06-06 15:05:47 +01:00
|
|
|
|
|
|
|
jar {
|
|
|
|
baseName 'corda-test-utils'
|
|
|
|
}
|
|
|
|
|
|
|
|
publish {
|
2017-07-18 12:34:56 +01:00
|
|
|
name jar.baseName
|
2017-06-06 15:05:47 +01:00
|
|
|
}
|