mirror of
https://github.com/corda/corda.git
synced 2025-01-28 07:04:12 +00:00
30 lines
454 B
Groovy
30 lines
454 B
Groovy
|
plugins {
|
||
|
id 'org.jetbrains.kotlin.jvm'
|
||
|
id 'java-library'
|
||
|
id 'idea'
|
||
|
}
|
||
|
|
||
|
description 'Deserializers for the DJVM'
|
||
|
|
||
|
dependencies {
|
||
|
api "net.corda:corda-core:$corda_version"
|
||
|
api "net.corda:corda-serialization:$corda_version"
|
||
|
}
|
||
|
|
||
|
jar {
|
||
|
manifest {
|
||
|
attributes('Sealed': true)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//publish {
|
||
|
// name 'corda-djvm-deserializers'
|
||
|
//}
|
||
|
|
||
|
idea {
|
||
|
module {
|
||
|
downloadJavadoc = true
|
||
|
downloadSources = true
|
||
|
}
|
||
|
}
|