2018-05-04 16:02:16 +02:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile("org.elasticsearch.client:transport:${rootProject.property('elasticsearch.version')}") {
|
|
|
|
exclude group: 'org.elasticsearch', module: 'securesm'
|
|
|
|
exclude group: 'org.elasticsearch.plugin', module: 'transport-netty3-client'
|
|
|
|
exclude group: 'org.elasticsearch.plugin', module: 'reindex-client'
|
|
|
|
exclude group: 'org.elasticsearch.plugin', module: 'percolator-client'
|
|
|
|
exclude group: 'org.elasticsearch.plugin', module: 'lang-mustache-client'
|
|
|
|
}
|
2019-02-10 20:39:07 +01:00
|
|
|
// we try to override the Elasticsearch netty by our netty version which is more recent
|
2018-05-04 16:02:16 +02:00
|
|
|
compile "io.netty:netty-buffer:${rootProject.property('netty.version')}"
|
|
|
|
compile "io.netty:netty-codec-http:${rootProject.property('netty.version')}"
|
|
|
|
compile "io.netty:netty-handler:${rootProject.property('netty.version')}"
|
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
|
|
|
baseName "${rootProject.name}-api"
|
|
|
|
}
|