mirror of
https://github.com/corda/corda.git
synced 2025-02-06 19:19:19 +00:00
ENT-1906: Remove SLF4J's JUL logging bridge from DJVM. (#3895)
* Remove SLF4J's JUL logging bridge from DJVM. * Refactor SLF4J's Log4J back end into the CLI.
This commit is contained in:
parent
2fbeab1365
commit
541a0d7d5b
@ -14,9 +14,7 @@ ext {
|
|||||||
dependencies {
|
dependencies {
|
||||||
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
||||||
compile "org.slf4j:jul-to-slf4j:$slf4j_version"
|
compile "org.slf4j:slf4j-api:$slf4j_version"
|
||||||
compile "org.apache.logging.log4j:log4j-slf4j-impl:$log4j_version"
|
|
||||||
compile "com.jcabi:jcabi-manifests:$jcabi_manifests_version"
|
|
||||||
|
|
||||||
// ASM: byte code manipulation library
|
// ASM: byte code manipulation library
|
||||||
compile "org.ow2.asm:asm:$asm_version"
|
compile "org.ow2.asm:asm:$asm_version"
|
||||||
@ -29,6 +27,7 @@ dependencies {
|
|||||||
// Test utilities
|
// Test utilities
|
||||||
testCompile "junit:junit:$junit_version"
|
testCompile "junit:junit:$junit_version"
|
||||||
testCompile "org.assertj:assertj-core:$assertj_version"
|
testCompile "org.assertj:assertj-core:$assertj_version"
|
||||||
|
testCompile "org.apache.logging.log4j:log4j-slf4j-impl:$log4j_version"
|
||||||
}
|
}
|
||||||
|
|
||||||
jar.enabled = false
|
jar.enabled = false
|
||||||
@ -37,8 +36,6 @@ shadowJar {
|
|||||||
baseName 'corda-djvm'
|
baseName 'corda-djvm'
|
||||||
classifier ''
|
classifier ''
|
||||||
dependencies {
|
dependencies {
|
||||||
exclude(dependency('com.jcabi:.*:.*'))
|
|
||||||
exclude(dependency('org.apache.*:.*:.*'))
|
|
||||||
exclude(dependency('org.jetbrains.*:.*:.*'))
|
exclude(dependency('org.jetbrains.*:.*:.*'))
|
||||||
exclude(dependency('org.slf4j:.*:.*'))
|
exclude(dependency('org.slf4j:.*:.*'))
|
||||||
exclude(dependency('io.github.lukehutch:.*:.*'))
|
exclude(dependency('io.github.lukehutch:.*:.*'))
|
||||||
|
@ -15,7 +15,6 @@ configurations {
|
|||||||
dependencies {
|
dependencies {
|
||||||
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
||||||
compile "org.slf4j:jul-to-slf4j:$slf4j_version"
|
|
||||||
compile "org.apache.logging.log4j:log4j-slf4j-impl:$log4j_version"
|
compile "org.apache.logging.log4j:log4j-slf4j-impl:$log4j_version"
|
||||||
compile "com.jcabi:jcabi-manifests:$jcabi_manifests_version"
|
compile "com.jcabi:jcabi-manifests:$jcabi_manifests_version"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user