2017-03-17 10:33:01 +00:00
|
|
|
apply plugin: 'kotlin'
|
|
|
|
apply plugin: 'net.corda.plugins.quasar-utils'
|
|
|
|
apply plugin: 'net.corda.plugins.publish-utils'
|
2017-06-26 18:07:56 +01:00
|
|
|
apply plugin: 'com.jfrog.artifactory'
|
2017-03-17 10:33:01 +00:00
|
|
|
|
|
|
|
description 'Corda node Artemis API'
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile project(":core")
|
|
|
|
|
2017-03-30 16:27:01 +01:00
|
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
|
2017-03-17 10:33:01 +00:00
|
|
|
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
2017-03-22 15:52:54 +00:00
|
|
|
testCompile "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
|
2017-03-17 10:33:01 +00:00
|
|
|
compile "org.apache.activemq:artemis-core-client:${artemis_version}"
|
|
|
|
compile "org.apache.activemq:artemis-commons:${artemis_version}"
|
|
|
|
|
2017-03-22 15:52:54 +00:00
|
|
|
// For adding serialisation of file upload streams to RPC
|
|
|
|
// TODO: Remove this dependency and the code that requires it
|
|
|
|
compile "commons-fileupload:commons-fileupload:$fileupload_version"
|
|
|
|
|
2017-03-17 10:33:01 +00:00
|
|
|
// TypeSafe Config: for simple and human friendly config files.
|
|
|
|
compile "com.typesafe:config:$typesafe_config_version"
|
2017-04-07 11:23:25 +01:00
|
|
|
|
2017-08-09 14:53:46 +01:00
|
|
|
// Kryo: object graph serialization.
|
|
|
|
compile "com.esotericsoftware:kryo:4.0.0"
|
|
|
|
compile "de.javakaffee:kryo-serializers:0.41"
|
|
|
|
|
2017-04-07 11:23:25 +01:00
|
|
|
// Unit testing helpers.
|
|
|
|
testCompile "junit:junit:$junit_version"
|
|
|
|
testCompile "org.assertj:assertj-core:${assertj_version}"
|
|
|
|
testCompile project(':test-utils')
|
2017-03-17 10:33:01 +00:00
|
|
|
}
|
2017-06-06 15:05:47 +01:00
|
|
|
|
|
|
|
jar {
|
|
|
|
baseName 'corda-node-api'
|
|
|
|
}
|
|
|
|
|
|
|
|
publish {
|
2017-07-18 12:34:56 +01:00
|
|
|
name jar.baseName
|
2017-06-06 15:05:47 +01:00
|
|
|
}
|