20 lines
560 B
Groovy
20 lines
560 B
Groovy
/*
|
|
* 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.
|
|
*/
|
|
|
|
configure(subprojects.findAll { it.parent.path == project.path }) {
|
|
group = 'org.opensearch.sandbox'
|
|
apply plugin: 'opensearch.testclusters'
|
|
apply plugin: 'opensearch.opensearchplugin'
|
|
|
|
opensearchplugin {
|
|
name project.name
|
|
licenseFile rootProject.file('licenses/APACHE-LICENSE-2.0.txt')
|
|
noticeFile rootProject.file('NOTICE.txt')
|
|
}
|
|
}
|