mirror of
https://github.com/corda/corda.git
synced 2024-12-18 20:47:57 +00:00
406f7ff292
This requires Kotlin 1.2 versions of core and serialization (core-1.2 and serialization-1.2 respectively), which are just "shell" modules and which compile the existing source code with Kotlin 1.2. The 1.2 plugin does not work with the current version of Gradle and so the 1.2 compiler has to be called directly. Now with two versions of Kotlin in the code base, each module needs to have its version manually specified to ensure a clean separation. Otherwise, the default Kotlin version can override 1.2 when needed. Some of the code was tidied-up or improved to enable it to be cross-compiled. For post-1.2 APIs being used, they have been copied into core-1.2 with the same method signatures. OpenTelemetryComponent was moved to node-api, along with the dependency, to avoid also having a 1.2 version for the opentelemetry module.
33 lines
885 B
Groovy
33 lines
885 B
Groovy
apply plugin: 'org.jetbrains.kotlin.jvm'
|
|
apply plugin: 'corda.common-publishing'
|
|
|
|
description 'CLI Utilities'
|
|
|
|
dependencies {
|
|
implementation project(":core")
|
|
implementation project(":common-logging")
|
|
|
|
implementation "org.apache.commons:commons-lang3:$commons_lang3_version"
|
|
implementation "info.picocli:picocli:$picocli_version"
|
|
implementation "commons-io:commons-io:$commons_io_version"
|
|
implementation "com.jcabi:jcabi-manifests:$jcabi_manifests_version"
|
|
|
|
// JAnsi: for drawing things to the terminal in nicely coloured ways.
|
|
implementation "org.fusesource.jansi:jansi:$jansi_version"
|
|
|
|
implementation "org.slf4j:slf4j-api:$slf4j_version"
|
|
}
|
|
|
|
jar {
|
|
archiveBaseName = "corda-tools-cliutils"
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
maven(MavenPublication) {
|
|
artifactId jar.baseName
|
|
from components.java
|
|
}
|
|
}
|
|
}
|