17 lines
389 B
Groovy
17 lines
389 B
Groovy
|
apply plugin: 'elasticsearch.build'
|
||
|
|
||
|
dependencies {
|
||
|
compile 'org.ow2.asm:asm:6.2'
|
||
|
compile "org.elasticsearch:elasticsearch:${version}"
|
||
|
compile "org.elasticsearch.plugin:x-pack-core:${version}"
|
||
|
testCompile "org.elasticsearch.test:framework:${version}"
|
||
|
}
|
||
|
|
||
|
forbiddenApisMain.enabled = true
|
||
|
|
||
|
dependencyLicenses.enabled = false
|
||
|
|
||
|
jarHell.enabled = false
|
||
|
|
||
|
thirdPartyAudit.enabled = false
|