mirror of
https://github.com/corda/corda.git
synced 2024-12-28 00:38:55 +00:00
45 lines
1.5 KiB
Groovy
45 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: 'java'
|
|
apply plugin: 'kotlin'
|
|
apply plugin: 'net.corda.plugins.publish-utils'
|
|
apply plugin: 'net.corda.plugins.api-scanner'
|
|
apply plugin: 'com.jfrog.artifactory'
|
|
|
|
dependencies {
|
|
compile project(':core')
|
|
testCompile project(':test-utils')
|
|
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
testCompile "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
|
|
|
|
// Jackson and its plugins: parsing to/from JSON and other textual formats.
|
|
compile "com.fasterxml.jackson.module:jackson-module-kotlin:$jackson_version"
|
|
// Yaml is useful for parsing strings to method calls.
|
|
compile "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:$jackson_version"
|
|
// This adds support for java.time types.
|
|
compile "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson_version"
|
|
compile "com.google.guava:guava:$guava_version"
|
|
|
|
testCompile project(path: ':core', configuration: 'testArtifacts')
|
|
testCompile "junit:junit:$junit_version"
|
|
}
|
|
|
|
jar {
|
|
baseName 'corda-jackson'
|
|
manifest {
|
|
attributes 'Automatic-Module-Name': 'net.corda.client.jackson'
|
|
}
|
|
}
|
|
|
|
publish {
|
|
name jar.baseName
|
|
} |