mirror of
https://github.com/corda/corda.git
synced 2024-12-19 13:08:04 +00:00
98266da41c
* CORDA-305: Refactor CordaRPCClient into :client:rpc module * CORDA-305: Remove the Kotlin test framework from the artifacts. * CORDA-305: Migrate serialisation whitelist into node-api module. * CORDA-305: Clean up unused RPC observables. * CORDA-305: Add :client:rpc module to documentation tasks. * CORDA-305: Include :finance into :client:rpc for its serialisable classes. * CORDA-305: Move test classes into the correct directory. * CORDA-305: Migrate :finance dependency from :client:rpc into DemoBench. * CORDA-305: Update wording of TODO about handling Observables.
49 lines
1.3 KiB
Groovy
49 lines
1.3 KiB
Groovy
apply plugin: 'kotlin'
|
|
apply plugin: 'application'
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
maven {
|
|
url 'http://oss.sonatype.org/content/repositories/snapshots'
|
|
}
|
|
jcenter()
|
|
maven {
|
|
url 'https://dl.bintray.com/kotlin/exposed'
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
resources {
|
|
srcDir "../../config/dev"
|
|
}
|
|
}
|
|
}
|
|
|
|
mainClassName = 'net.corda.loadtest.MainKt'
|
|
|
|
dependencies {
|
|
compile project(':client:mock')
|
|
compile project(':client:rpc')
|
|
compile project(':node')
|
|
|
|
// https://mvnrepository.com/artifact/com.jcraft/jsch
|
|
compile group: 'com.jcraft', name: 'jsch', version: '0.1.54'
|
|
compile group: 'com.jcraft', name: 'jsch.agentproxy.core', version: '0.0.9'
|
|
compile group: 'com.jcraft', name: 'jsch.agentproxy.sshagent', version: '0.0.9'
|
|
compile group: 'com.jcraft', name: 'jsch.agentproxy.usocket-jna', version: '0.0.9'
|
|
|
|
// https://mvnrepository.com/artifact/de.danielbechler/java-object-diff
|
|
compile group: 'de.danielbechler', name: 'java-object-diff', version: '0.10.2'
|
|
|
|
// TypeSafe Config: for simple and human friendly config files.
|
|
compile "com.typesafe:config:$typesafe_config_version"
|
|
}
|
|
|
|
run {
|
|
if (project.hasProperty('loadtest-config') ) {
|
|
args project["loadtest-config"]
|
|
}
|
|
}
|