|
@ -42,6 +42,7 @@
|
|
<version.jackson>2.8.1</version.jackson>
|
|
<version.jackson>2.8.1</version.jackson>
|
|
<version.myCommon>1.0.0</version.myCommon>
|
|
<version.myCommon>1.0.0</version.myCommon>
|
|
<version.spring>4.3.3.RELEASE</version.spring>
|
|
<version.spring>4.3.3.RELEASE</version.spring>
|
|
|
|
<version.zipkin>1.24.0</version.zipkin>
|
|
</properties>
|
|
</properties>
|
|
<!--dependencyManagement作用子配置不写版本默认继承父配置-->
|
|
<!--dependencyManagement作用子配置不写版本默认继承父配置-->
|
|
<dependencyManagement>
|
|
<dependencyManagement>
|
|
@ -139,7 +140,12 @@
|
|
</dependency>
|
|
</dependency>
|
|
<dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-zipkin</artifactId>
|
|
|
|
|
|
<artifactId>spring-cloud-sleuth-zipkin</artifactId>
|
|
|
|
<version>${version.springCloud.start}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-sleuth</artifactId>
|
|
<version>${version.springCloud.start}</version>
|
|
<version>${version.springCloud.start}</version>
|
|
</dependency>
|
|
</dependency>
|
|
<!--springCloud end-->
|
|
<!--springCloud end-->
|
|
@ -248,6 +254,19 @@
|
|
<version>${version.jackson}</version>
|
|
<version>${version.jackson}</version>
|
|
</dependency>
|
|
</dependency>
|
|
<!--fastJson end-->
|
|
<!--fastJson end-->
|
|
|
|
<!--zipkin 日志追踪 start-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.zipkin.java</groupId>
|
|
|
|
<artifactId>zipkin-server</artifactId>
|
|
|
|
<version>${version.zipkin}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.zipkin.java</groupId>
|
|
|
|
<artifactId>zipkin-autoconfigure-ui</artifactId>
|
|
|
|
<version>${version.zipkin}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--zipkin end-->
|
|
</dependencies>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
</dependencyManagement>
|
|
|
|
|