mirror of
https://github.com/corda/corda.git
synced 2025-01-01 02:36:44 +00:00
31 lines
979 B
Groovy
31 lines
979 B
Groovy
|
apply plugin: 'kotlin'
|
||
|
|
||
|
description 'Common code shared between remote attestation modules'
|
||
|
|
||
|
dependencies {
|
||
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
|
||
|
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
||
|
testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
|
||
|
testCompile "junit:junit:$junit_version"
|
||
|
|
||
|
compile "com.fasterxml.jackson.core:jackson-core:$jackson_version"
|
||
|
compile "com.fasterxml.jackson.core:jackson-databind:$jackson_version"
|
||
|
compile "com.fasterxml.jackson.core:jackson-annotations:$jackson_version"
|
||
|
compile "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson_version"
|
||
|
compile "org.bouncycastle:bcpkix-jdk15on:$bouncycastle_version"
|
||
|
compile "org.slf4j:slf4j-api:$slf4j_version"
|
||
|
}
|
||
|
|
||
|
configurations {
|
||
|
testArtifacts.extendsFrom testRuntime
|
||
|
}
|
||
|
|
||
|
task testJar(type: Jar) {
|
||
|
classifier "tests"
|
||
|
from sourceSets.test.output
|
||
|
}
|
||
|
|
||
|
artifacts {
|
||
|
testArtifacts testJar
|
||
|
}
|