mirror of
https://gitee.com/ChinaLym/shoulder-platform.git
synced 2025-12-30 02:52:27 +00:00
33 lines
1.2 KiB
XML
33 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<parent>
|
|
<groupId>cn.itlym.platform</groupId>
|
|
<artifactId>shoulder-platform-parent</artifactId>
|
|
<version>1.0-SNAPSHOT</version><!-- shoulder-platform-version -->
|
|
<relativePath>../shoulder-platform-parent/pom.xml</relativePath>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>shoulder-platform-starter-trace</artifactId>
|
|
|
|
<description>链路追踪:选用 zipkin + mq 的方式</description>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-sleuth-zipkin</artifactId>
|
|
<version>3.1.9</version>
|
|
<!-- 2.2.8 后 starter name changed -->
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cn.itlym.platform</groupId>
|
|
<artifactId>shoulder-platform-starter-mq</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project> |