Remove slf4j hack
This commit is contained in:
parent
f4f8b6e3fe
commit
935c2c75f6
|
@ -39,7 +39,7 @@ buildscript {
|
||||||
}
|
}
|
||||||
|
|
||||||
// this is common configuration for distributions, but we also add it here for the license check to use
|
// this is common configuration for distributions, but we also add it here for the license check to use
|
||||||
ext.dependencyFiles = project(':core').configurations.runtime.copyRecursive() // .exclude(module: 'slf4j-api')
|
ext.dependencyFiles = project(':core').configurations.runtime.copyRecursive().exclude(module: 'slf4j-api')
|
||||||
|
|
||||||
|
|
||||||
/*****************************************************************************
|
/*****************************************************************************
|
||||||
|
|
|
@ -47,7 +47,7 @@ dependencies {
|
||||||
compile 'commons-io:commons-io:2.4'
|
compile 'commons-io:commons-io:2.4'
|
||||||
compile 'commons-lang:commons-lang:2.6'
|
compile 'commons-lang:commons-lang:2.6'
|
||||||
compile 'javax.servlet:servlet-api:2.5'
|
compile 'javax.servlet:servlet-api:2.5'
|
||||||
// we need this one, its not really 'provided' compile 'org.slf4j:slf4j-api:${versions.slf4j}'
|
compile "org.slf4j:slf4j-api:${versions.slf4j}"
|
||||||
|
|
||||||
hdfsFixture project(':test:fixtures:hdfs-fixture')
|
hdfsFixture project(':test:fixtures:hdfs-fixture')
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue