From 6992f1788cc7a544b15cbace5d093d87aed82ca5 Mon Sep 17 00:00:00 2001 From: John Niang Date: Tue, 9 Sep 2025 16:54:44 +0800 Subject: [PATCH] Add context propagation dependency to build.gradle (#7744) #### What type of PR is this? /kind improvement /area core /area plugin /milestone 2.21.x #### What this PR does / why we need it: This PR adds `io.micrometer:context-propagation` dependency to assist with context propagation across different types of context mechanisms, such as ThreadLocal, Reactor Context, and others. #### Does this PR introduce a user-facing change? ```release-note None ``` --- api/build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/build.gradle b/api/build.gradle index 64d824f6d..adef63e9e 100644 --- a/api/build.gradle +++ b/api/build.gradle @@ -60,6 +60,8 @@ dependencies { api 'org.springframework.security:spring-security-oauth2-client' api 'org.springframework.security:spring-security-oauth2-resource-server' + api 'io.micrometer:context-propagation' + // Cache api "org.springframework.boot:spring-boot-starter-cache" api "com.github.ben-manes.caffeine:caffeine"