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
|
|
|
|
2016-12-14 18:02:28 -05:00
|
|
|
if (project.projectDir.name != 'x-pack') {
|
2016-12-20 13:43:32 -05:00
|
|
|
throw new GradleException('You must checkout x-pack in the following directory: <path to Elasticsearch checkout>/../elasticsearch-extra/x-pack')
|
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)
|
|
|
|
// Use x-pack specific suppressions file rather than the open source one.
|
|
|
|
configProperties = [
|
|
|
|
suppressions: checkstyleSuppressions
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType(LicenseHeadersTask.class) {
|
|
|
|
approvedLicenses = ['Elasticsearch Confidential']
|
|
|
|
additionalLicense 'ESCON', 'Elasticsearch Confidential', 'ELASTICSEARCH CONFIDENTIAL'
|
|
|
|
}
|
2016-12-14 18:02:28 -05:00
|
|
|
ext.projectSubstitutions += [ "org.elasticsearch.plugin:x-pack-api:${version}": ':x-pack:elasticsearch' ]
|
2016-09-29 06:03:14 -04:00
|
|
|
}
|