29 lines
702 B
Groovy
29 lines
702 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.
|
|
*
|
|
* Modifications Copyright OpenSearch Contributors. See
|
|
* GitHub history for details.
|
|
*/
|
|
|
|
|
|
import org.opensearch.gradle.info.BuildParams;
|
|
|
|
subprojects {
|
|
apply plugin: 'opensearch.opensearchplugin'
|
|
apply plugin: 'opensearch.yaml-rest-test'
|
|
|
|
opensearchplugin {
|
|
name it.name
|
|
licenseFile rootProject.file('licenses/APACHE-LICENSE-2.0.txt')
|
|
noticeFile rootProject.file('NOTICE.txt')
|
|
}
|
|
|
|
tasks.named('yamlRestTest').configure {
|
|
it.onlyIf { BuildParams.isSnapshotBuild() }
|
|
}
|
|
}
|