Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 949 Bytes

installing.adoc

File metadata and controls

28 lines (22 loc) · 949 Bytes

Installing

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

Milestone releases are published to https://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>