36 lines
1.1 KiB
Groovy
36 lines
1.1 KiB
Groovy
|
apply plugin: 'elasticsearch.esplugin'
|
||
|
esplugin {
|
||
|
name 'x-pack-upgrade'
|
||
|
description 'Elasticsearch Expanded Pack Plugin - Upgrade'
|
||
|
classname 'org.elasticsearch.xpack.upgrade.Upgrade'
|
||
|
hasNativeController true
|
||
|
requiresKeystore true
|
||
|
extendedPlugins = ['x-pack-core']
|
||
|
licenseFile project(':x-pack-elasticsearch').file('LICENSE.txt')
|
||
|
noticeFile project(':x-pack-elasticsearch').file('NOTICE.txt')
|
||
|
}
|
||
|
|
||
|
archivesBaseName = 'x-pack-upgrade'
|
||
|
// TODO: enable this once we have tests
|
||
|
test.enabled=false
|
||
|
licenseHeaders.enabled = false
|
||
|
|
||
|
integTest.enabled = false
|
||
|
|
||
|
dependencies {
|
||
|
provided "org.elasticsearch:elasticsearch:${version}"
|
||
|
provided "org.elasticsearch.plugin:x-pack-core:${version}"
|
||
|
testCompile project(path: ':x-pack-elasticsearch:plugin:core', configuration: 'testArtifacts')
|
||
|
}
|
||
|
|
||
|
compileJava.options.compilerArgs << "-Xlint:-deprecation,-rawtypes,-serial,-try,-unchecked"
|
||
|
compileTestJava.options.compilerArgs << "-Xlint:-deprecation,-rawtypes,-serial,-try,-unchecked"
|
||
|
|
||
|
dependencyLicenses {
|
||
|
ignoreSha 'x-pack-core'
|
||
|
}
|
||
|
|
||
|
run {
|
||
|
plugin ':x-pack-elasticsearch:plugin:core'
|
||
|
}
|