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.

Milestone releases are for testing purposes and are not intended for production.

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>