Remove slf4j hack

This commit is contained in:
Robert Muir 2015-12-20 22:08:18 -05:00
parent f4f8b6e3fe
commit 935c2c75f6
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ buildscript {
}
// 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')
/*****************************************************************************

View File

@ -47,7 +47,7 @@ dependencies {
compile 'commons-io:commons-io:2.4'
compile 'commons-lang:commons-lang:2.6'
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')
}