2021-04-09 15:28:18 -04:00
|
|
|
/*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* The OpenSearch Contributors require contributions made to
|
|
|
|
* this file be licensed under the Apache-2.0 license or a
|
|
|
|
* compatible open source license.
|
|
|
|
*
|
|
|
|
* Modifications Copyright OpenSearch Contributors. See
|
|
|
|
* GitHub history for details.
|
|
|
|
*/
|
|
|
|
|
2015-10-29 14:40:19 -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.
|
|
|
|
*/
|
|
|
|
|
2019-11-14 06:01:23 -05:00
|
|
|
subprojects {
|
2021-03-11 00:06:21 -05:00
|
|
|
apply plugin: 'opensearch.testclusters'
|
2019-04-26 11:34:03 -04:00
|
|
|
}
|
|
|
|
|
2015-12-15 23:14:37 -05:00
|
|
|
// only configure immediate children of plugins dir
|
|
|
|
configure(subprojects.findAll { it.parent.path == project.path }) {
|
2021-03-11 00:06:21 -05:00
|
|
|
group = 'org.opensearch.plugin'
|
|
|
|
apply plugin: 'opensearch.opensearchplugin'
|
2015-10-29 14:40:19 -04:00
|
|
|
|
2021-03-11 00:06:21 -05:00
|
|
|
opensearchplugin {
|
2015-11-07 19:34:26 -05:00
|
|
|
// for local ES plugins, the name of the plugin is the same as the directory
|
|
|
|
name project.name
|
2019-11-14 06:01:23 -05:00
|
|
|
|
2018-04-10 16:58:49 -04:00
|
|
|
licenseFile rootProject.file('licenses/APACHE-LICENSE-2.0.txt')
|
2017-02-15 14:23:12 -05:00
|
|
|
noticeFile rootProject.file('NOTICE.txt')
|
2015-11-07 19:34:26 -05:00
|
|
|
}
|
2015-10-29 14:40:19 -04:00
|
|
|
}
|