Add jackson smile dep for old ES tests.

This commit is contained in:
Tyler Benson 2019-01-16 13:27:04 -05:00
parent 4d7bb59e7e
commit fe3ebceba9
1 changed files with 4 additions and 0 deletions

View File

@ -45,6 +45,10 @@ dependencies {
testCompile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.11.0'
testCompile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.11.0'
testCompile group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-smile', version: versions.jackson
// ^ is needed because we are using a newer version of jackson that isn't compatible without this.
latestDepTestCompile group: 'org.elasticsearch', name: 'elasticsearch', version: '2.4.6'
latestDepTestCompile group: 'org.springframework.data', name: 'spring-data-elasticsearch', version: '2.1.15.RELEASE'
}