Installing

Snapshots are published to repo.spring.io/snapshot for every successful build on the main branch and maintenance branches.

Milestone releases are published to repo.spring.io/milestone. Include that as a Maven repository in your build configuration to use milestone releases. Note that milestone releases are for testing purposes and are not intended for production use.

The following example shows the required dependency in Gradle:

implementation 'io.micrometer:context-propagation:latest.integration'

The following example shows the required dependency in Maven:

<dependencies>
    <dependency>
        <groupId>io.micrometer</groupId>
        <artifactId>context-propagation</artifactId>
        <version>${micrometer-context-propagation.version}</version>
    </dependency>
</dependencies>