29 lines
759 B
Groovy
29 lines
759 B
Groovy
import org.opensearch.gradle.info.BuildParams
|
|
|
|
// Subprojects aren't published so do not assemble
|
|
gradle.projectsEvaluated {
|
|
subprojects {
|
|
Task assemble = project.tasks.findByName('assemble')
|
|
if (assemble) {
|
|
assemble.enabled = false
|
|
}
|
|
|
|
// Disable example project testing with FIPS JVM
|
|
tasks.withType(Test) {
|
|
onlyIf {
|
|
BuildParams.inFipsJvm == false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
configure(project('painless-whitelist')) {
|
|
configurations.all {
|
|
resolutionStrategy.dependencySubstitution {
|
|
substitute module('org.opensearch.plugin:opensearch-scripting-painless-spi') with project(':modules:lang-painless:spi')
|
|
substitute module('org.opensearch.test:logger-usage') with project(':test:logger-usage')
|
|
}
|
|
}
|
|
}
|
|
|