mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-27 17:10:22 -04:00
* Delegated authorization using Microsoft Graph (SDK) --------- Co-authored-by: elasticsearchmachine <infra-root+elasticsearchmachine@elastic.co> Co-authored-by: Johannes Freden Jansson <johannes.freden@elastic.co> Co-authored-by: Johannes Fredén <109296772+jfreden@users.noreply.github.com>
14 lines
641 B
Groovy
14 lines
641 B
Groovy
apply plugin: 'elasticsearch.internal-java-rest-test'
|
|
|
|
dependencies {
|
|
javaRestTestImplementation project(':x-pack:plugin:core')
|
|
javaRestTestImplementation project(':x-pack:plugin:security')
|
|
javaRestTestImplementation testArtifact(project(":x-pack:plugin:security:qa:saml-rest-tests"), "javaRestTest")
|
|
clusterPlugins project(':x-pack:extras:plugins:microsoft-graph-authz')
|
|
clusterModules project(":modules:analysis-common")
|
|
}
|
|
|
|
tasks.named("javaRestTest").configure {
|
|
// disable tests in FIPS mode as we need to use a custom truststore containing the certs used in MicrosoftGraphHttpFixture
|
|
buildParams.withFipsEnabledOnly(it)
|
|
}
|