mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-03 17:39:15 +00:00
- Create a separate unitTest task instead of Gradle's built in - convert all configuration to use the new task - the built in task is now disabled
15 lines
377 B
Groovy
15 lines
377 B
Groovy
apply plugin: 'elasticsearch.build'
|
|
|
|
targetCompatibility = JavaVersion.VERSION_1_7
|
|
|
|
// java_version_checker do not depend on core so only JDK signatures should be checked
|
|
forbiddenApisMain {
|
|
replaceSignatureFiles 'jdk-signatures'
|
|
}
|
|
|
|
unitTest.enabled = false
|
|
namingConventions.enabled = false
|
|
javadoc.enabled = false
|
|
loggerUsageCheck.enabled = false
|
|
jarHell.enabled = false
|