|
| 1 | +<!-- |
| 2 | + ~ Licensed to the Apache Software Foundation (ASF) under one or more |
| 3 | + ~ contributor license agreements. See the NOTICE file distributed with |
| 4 | + ~ this work for additional information regarding copyright ownership. |
| 5 | + ~ The ASF licenses this file to You under the Apache License, Version 2.0 |
| 6 | + ~ (the "License"); you may not use this file except in compliance with |
| 7 | + ~ the License. You may obtain a copy of the License at |
| 8 | + ~ |
| 9 | + ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | + ~ |
| 11 | + ~ Unless required by applicable law or agreed to in writing, software |
| 12 | + ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | + ~ See the License for the specific language governing permissions and |
| 15 | + ~ limitations under the License. |
| 16 | + ~ |
| 17 | + --> |
| 18 | + |
| 19 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 20 | + <parent> |
| 21 | + <artifactId>apm-application-toolkit</artifactId> |
| 22 | + <groupId>org.apache.skywalking</groupId> |
| 23 | + <version>8.14.0-SNAPSHOT</version> |
| 24 | + </parent> |
| 25 | + <modelVersion>4.0.0</modelVersion> |
| 26 | + |
| 27 | + <artifactId>apm-toolkit-micrometer-1.10</artifactId> |
| 28 | + <packaging>jar</packaging> |
| 29 | + |
| 30 | + <url>http://maven.apache.org</url> |
| 31 | + |
| 32 | + <properties> |
| 33 | + <micrometer-core.version>1.10.2</micrometer-core.version> |
| 34 | + <context-propagation.version>1.0.0</context-propagation.version> |
| 35 | + </properties> |
| 36 | + |
| 37 | + <dependencies> |
| 38 | + <dependency> |
| 39 | + <groupId>org.apache.skywalking</groupId> |
| 40 | + <artifactId>apm-toolkit-micrometer-registry</artifactId> |
| 41 | + <version>${project.version}</version> |
| 42 | + </dependency> |
| 43 | + <dependency> |
| 44 | + <groupId>io.micrometer</groupId> |
| 45 | + <artifactId>micrometer-observation</artifactId> |
| 46 | + <version>${micrometer-core.version}</version> |
| 47 | + </dependency> |
| 48 | + <dependency> |
| 49 | + <groupId>io.micrometer</groupId> |
| 50 | + <artifactId>micrometer-core</artifactId> |
| 51 | + <version>${micrometer-core.version}</version> |
| 52 | + </dependency> |
| 53 | + <dependency> |
| 54 | + <groupId>io.micrometer</groupId> |
| 55 | + <artifactId>context-propagation</artifactId> |
| 56 | + <version>${context-propagation.version}</version> |
| 57 | + </dependency> |
| 58 | + <dependency> |
| 59 | + <groupId>io.micrometer</groupId> |
| 60 | + <artifactId>micrometer-test</artifactId> |
| 61 | + <version>${micrometer-core.version}</version> |
| 62 | + <scope>test</scope> |
| 63 | + </dependency> |
| 64 | + </dependencies> |
| 65 | +</project> |
0 commit comments