mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-06 21:18:31 +00:00
c46a0e8708
Backport of #48849. Update `.editorconfig` to make the Java settings the default for all files, and then apply a 2-space indent to all `*.gradle` files. Then reformat all the files.
20 lines
791 B
Groovy
20 lines
791 B
Groovy
apply plugin: 'elasticsearch.standalone-test'
|
|
apply plugin: 'elasticsearch.test.fixtures'
|
|
|
|
dependencies {
|
|
testCompile project(path: xpackModule('core'), configuration: 'default')
|
|
testCompile project(path: xpackModule('security'), configuration: 'testArtifacts')
|
|
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
|
|
}
|
|
|
|
testFixtures.useFixture ":x-pack:test:idp-fixture", "openldap"
|
|
|
|
Project idpFixtureProject = xpackProject("test:idp-fixture")
|
|
String outputDir = "${project.buildDir}/generated-resources/${project.name}"
|
|
task copyIdpTrust(type: Copy) {
|
|
from idpFixtureProject.file('openldap/certs/ca.jks');
|
|
from idpFixtureProject.file('openldap/certs/ca_server.pem');
|
|
into outputDir
|
|
}
|
|
project.sourceSets.test.output.dir(outputDir, builtBy: copyIdpTrust)
|