2016-04-25 19:21:05 -04:00
import org.elasticsearch.gradle.VersionProperties
2016-09-29 06:03:14 -04:00
import org.elasticsearch.gradle.precommit.LicenseHeadersTask
2016-04-25 19:21:05 -04:00
2017-02-10 14:02:42 -05:00
if ( project . projectDir . name ! = 'x-pack-elasticsearch' ) {
2017-02-14 17:16:18 -05:00
throw new GradleException ( 'You must checkout x-pack-elasticsearch in the following directory: <path to Elasticsearch checkout>/../elasticsearch-extra/x-pack-elasticsearch' )
2015-11-16 15:45:03 -05:00
}
2016-02-04 16:07:01 -05:00
subprojects {
2016-11-24 03:05:15 -05:00
plugins . withType ( MavenPublishPlugin ) . whenPluginAdded {
publishing {
publications {
// add license information to generated poms
all {
pom . withXml { XmlProvider xml - >
Node node = xml . asNode ( )
Node license = node . appendNode ( 'licenses' ) . appendNode ( 'license' )
license . appendNode ( 'name' , 'Elastic Commercial Software End User License Agreement' )
license . appendNode ( 'url' , 'https://www.elastic.co/eula/' )
license . appendNode ( 'distribution' , 'repo' )
Node developer = node . appendNode ( 'developers' ) . appendNode ( 'developer' )
developer . appendNode ( 'name' , 'Elastic' )
developer . appendNode ( 'url' , 'http://www.elastic.co' )
}
}
}
2016-02-04 16:21:18 -05:00
}
2016-02-04 16:07:01 -05:00
}
}
2016-09-29 06:03:14 -04:00
File checkstyleSuppressions = file ( 'dev-tools/checkstyle_suppressions.xml' )
subprojects {
tasks . withType ( Checkstyle ) {
inputs . file ( checkstyleSuppressions )
2017-02-10 14:02:42 -05:00
// Use x-pack-elasticsearch specific suppressions file rather than the open source one.
2016-09-29 06:03:14 -04:00
configProperties = [
suppressions: checkstyleSuppressions
]
}
tasks . withType ( LicenseHeadersTask . class ) {
approvedLicenses = [ 'Elasticsearch Confidential' ]
additionalLicense 'ESCON' , 'Elasticsearch Confidential' , 'ELASTICSEARCH CONFIDENTIAL'
}
2017-05-18 13:33:53 -04:00
ext . projectSubstitutions + = [ "org.elasticsearch.plugin:x-pack-api:${version}" : ':x-pack-elasticsearch:plugin' ]
if ( wireCompatVersions [ - 1 ] . snapshot ) {
ext . projectSubstitutions + = [
"org.elasticsearch.plugin:x-pack:${wireCompatVersions[-1]}" : ':x-pack-elasticsearch:plugin:bwc-zip' ]
}
2016-09-29 06:03:14 -04:00
}