29 lines
845 B
Groovy
29 lines
845 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.
|
|
*/
|
|
|
|
apply plugin: 'opensearch.build'
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
|
|
// targetting very old java versions enables a warning by default on newer JDK: disable it.
|
|
compileJava.options.compilerArgs += '-Xlint:-options'
|
|
|
|
// java_version_checker do not depend on core so only JDK signatures should be checked
|
|
tasks.named('forbiddenApisMain').configure {
|
|
replaceSignatureFiles 'jdk-signatures'
|
|
}
|
|
|
|
test.enabled = false
|
|
javadoc.enabled = false
|
|
loggerUsageCheck.enabled = false
|
|
jarHell.enabled = false
|