18 lines
892 B
Groovy
18 lines
892 B
Groovy
|
|
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'
|
|
}
|
|
// we try to override the Elasticsearch netty by our netty version which might be more recent
|
|
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"
|
|
}
|