Skip to content

Commit

Permalink
0004857: commons-logging is implemented by jcl-over-slf4j
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Apr 21, 2021
1 parent 37b78ac commit 3271dca
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions symmetric-client/build.gradle
Expand Up @@ -9,6 +9,7 @@ apply from: symAssembleDir + '/common.gradle'
compile "commons-cli:commons-cli:$commonsCliVersion"
compile ("org.apache.commons:commons-vfs2:$commonsVfs") {
exclude group: "org.apache.hadoop"
exclude group: 'commons-logging'
}
compile "org.jdom:jdom2:$jdomVersion"

Expand Down
1 change: 1 addition & 0 deletions symmetric-db/build.gradle
Expand Up @@ -7,6 +7,7 @@ apply from: symAssembleDir + '/common.gradle'
compile "net.sf.kxml:kxml2:2.3.0" // Used by ddlutils / DatabaseXmlUtil
compile ("commons-beanutils:commons-beanutils:$commonsBeanUtilsVersion") {
exclude group: "commons-collections"
exclude group: 'commons-logging'
}

compileOnly ("com.datastax.cassandra:cassandra-driver-core:3.1.4") {
Expand Down
4 changes: 3 additions & 1 deletion symmetric-jdbc/build.gradle
Expand Up @@ -4,7 +4,9 @@ apply from: symAssembleDir + '/common.gradle'

dependencies {
compile project(":symmetric-db")
compile "org.apache.commons:commons-dbcp2:$commonsDbcpVersion"
compile ("org.apache.commons:commons-dbcp2:$commonsDbcpVersion") {
exclude group: 'commons-logging'
}
compile "org.springframework:spring-jdbc:$springVersion"

compileOnly "com.h2database:h2:$h2Version"
Expand Down
4 changes: 3 additions & 1 deletion symmetric-sqlexplorer/build.gradle
Expand Up @@ -50,7 +50,9 @@ dependencies {
compile project(":symmetric-io")

compile "org.apache.commons:commons-lang3:$commonsLangVersion"
compile "org.apache.commons:commons-dbcp2:$commonsDbcpVersion"
compile ("org.apache.commons:commons-dbcp2:$commonsDbcpVersion") {
exclude group: 'commons-logging'
}
compile "commons-io:commons-io:$commonsIoVersion"

compile "org.springframework:spring-webmvc:$springVersion"
Expand Down

0 comments on commit 3271dca

Please sign in to comment.