mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-08 22:14:59 +00:00
* Remove usage of deprecated testCompile configuration * Replace testCompile usage by testImplementation * Make testImplementation non transitive by default (as we did for testCompile) * Update CONTRIBUTING about using testImplementation for test dependencies * Fail on testCompile configuration usage
18 lines
367 B
Groovy
18 lines
367 B
Groovy
apply plugin: 'elasticsearch.build'
|
|
|
|
dependencies {
|
|
compile 'org.ow2.asm:asm:7.3.1'
|
|
compile project(':server')
|
|
compile project(':x-pack:plugin:core')
|
|
testImplementation project(':test:framework')
|
|
}
|
|
|
|
forbiddenApisMain.enabled = true
|
|
|
|
dependencyLicenses.enabled = false
|
|
dependenciesInfo.enabled = false
|
|
|
|
jarHell.enabled = false
|
|
|
|
thirdPartyAudit.enabled = false
|