mirror of
https://github.com/corda/corda.git
synced 2025-01-02 03:06:45 +00:00
CORDA-2030: Resolve build warnings created by adding kotlin-stdlib-jre8 to node. (#4033)
This commit is contained in:
parent
bffac331a3
commit
d75fd7bd8a
@ -9,7 +9,10 @@ description 'Testing utilities for Corda'
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile project(':test-common')
|
compile project(':test-common')
|
||||||
compile project(':node')
|
compile(project(':node')) {
|
||||||
|
// The Node only needs this for binary compatibility with Cordapps written in Kotlin 1.1.
|
||||||
|
exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib-jre8'
|
||||||
|
}
|
||||||
compile project(':client:mock')
|
compile project(':client:mock')
|
||||||
|
|
||||||
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
|
@ -16,6 +16,9 @@ configurations {
|
|||||||
compile {
|
compile {
|
||||||
exclude group: "log4j", module: "log4j"
|
exclude group: "log4j", module: "log4j"
|
||||||
exclude group: "org.apache.logging.log4j"
|
exclude group: "org.apache.logging.log4j"
|
||||||
|
|
||||||
|
// The Node only needs this for binary compatibility with Cordapps written in Kotlin 1.1.
|
||||||
|
exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib-jre8'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user