2015-10-14 14:46:45 -04:00
|
|
|
/*
|
|
|
|
* Licensed to Elasticsearch under one or more contributor
|
|
|
|
* license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright
|
|
|
|
* ownership. Elasticsearch licenses this file to you under
|
|
|
|
* the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing,
|
|
|
|
* software distributed under the License is distributed on an
|
|
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
* KIND, either express or implied. See the License for the
|
|
|
|
* specific language governing permissions and limitations
|
|
|
|
* under the License.
|
|
|
|
*/
|
|
|
|
|
2016-09-20 10:24:39 -04:00
|
|
|
import org.elasticsearch.gradle.plugin.PluginBuildPlugin
|
|
|
|
|
2015-12-03 17:52:51 -05:00
|
|
|
task buildZip(type: Zip) {
|
2015-12-03 17:18:26 -05:00
|
|
|
baseName = 'elasticsearch'
|
|
|
|
with archivesFiles
|
|
|
|
}
|
|
|
|
|
|
|
|
artifacts {
|
|
|
|
'default' buildZip
|
|
|
|
archives buildZip
|
|
|
|
}
|
|
|
|
|
2016-05-05 20:53:01 -04:00
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
nebula {
|
2016-09-19 18:10:41 -04:00
|
|
|
artifactId 'elasticsearch'
|
2016-05-05 20:53:01 -04:00
|
|
|
artifact buildZip
|
|
|
|
}
|
2016-09-20 10:24:39 -04:00
|
|
|
// TODO explain why we can't use the pom build by nebula
|
2016-09-19 18:10:41 -04:00
|
|
|
nebulaRealPom(MavenPublication) {
|
|
|
|
artifactId 'elasticsearch'
|
|
|
|
pom.packaging = 'pom'
|
2016-09-20 10:24:39 -04:00
|
|
|
pom.withXml { XmlProvider xml ->
|
|
|
|
Node root = xml.asNode()
|
|
|
|
root.appendNode('name', 'Elasticsearch')
|
|
|
|
root.appendNode('description', 'A Distributed RESTful Search Engine')
|
|
|
|
root.appendNode('url', PluginBuildPlugin.urlFromOrigin(project.scminfo.origin))
|
|
|
|
Node scmNode = root.appendNode('scm')
|
|
|
|
scmNode.appendNode('url', project.scminfo.origin)
|
|
|
|
}
|
2016-09-19 18:10:41 -04:00
|
|
|
}
|
2016-05-05 20:53:01 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-03 17:18:26 -05:00
|
|
|
integTest.dependsOn buildZip
|