elasticsearch/x-pack/plugin/security/qa/microsoft-graph-authz-tests/build.gradle
Richard Dennehy 63da93d4c3
Delegated authorization using Microsoft Graph (SDK) (#128396)
* 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>
2025-06-12 11:03:32 +02:00

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)
}