add explicit smile/cbor/yaml versions in dependencies
This commit is contained in:
parent
fb491e8f49
commit
1b41a1e94b
3 changed files with 7 additions and 1 deletions
|
@ -8,6 +8,9 @@ dependencies {
|
|||
api libs.log4j.api
|
||||
// add dependencies which are not managed by elasticsearch as a runtime dependency.
|
||||
// So, groovy grapes can load and run smoothly the elx client.
|
||||
implementation libs.jackson.cbor
|
||||
implementation libs.jackson.smile
|
||||
implementation libs.jackson.yaml
|
||||
implementation libs.lucene
|
||||
implementation libs.lucene.analyzers.common
|
||||
implementation libs.lucene.highlighter
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
group = org.xbib
|
||||
name = elx
|
||||
version = 7.10.2.35
|
||||
version = 7.10.2.36
|
||||
|
||||
org.gradle.warning.mode = ALL
|
||||
|
|
|
@ -29,6 +29,9 @@ dependencyResolutionManagement {
|
|||
library('tdigest', 'com.tdunning', 't-digest').version('3.2')
|
||||
library('es-plugin-transport-netty4', 'org.elasticsearch.plugin', 'transport-netty4-client').versionRef('elasticsearch')
|
||||
library('jackson', 'com.fasterxml.jackson.core', 'jackson-core').versionRef('jackson')
|
||||
library('jackson.smile', 'com.fasterxml.jackson.dataformat', 'jackson-dataformat-smile').versionRef('jackson')
|
||||
library('jackson.cbor', 'com.fasterxml.jackson.dataformat', 'jackson-dataformat-cbor').versionRef('jackson')
|
||||
library('jackson.yaml', 'com.fasterxml.jackson.dataformat', 'jackson-dataformat-yaml').versionRef('jackson')
|
||||
library('netty-codec-http', 'io.netty', 'netty-codec-http').versionRef('netty')
|
||||
library('netty-handler', 'io.netty', 'netty-handler').versionRef('netty')
|
||||
library('netty-buffer', 'io.netty', 'netty-buffer').versionRef('netty')
|
||||
|
|
Loading…
Reference in a new issue