Updates to latest zipkin 1.19 (#495)

Most changes are not very interesting to sleuth, though the server is
quite a lot better with UI fixes galore. For sleuth mainly, small api
unaffecting glitch fixes around the Span.Builder.
This commit is contained in:
Adrian Cole
2017-01-19 20:17:24 +08:00
committed by Adrian Cole
parent c347f724cd
commit 32d8ea8fc7
4 changed files with 18 additions and 4 deletions

View File

@@ -14,8 +14,8 @@
<name>spring-cloud-sleuth-dependencies</name>
<description>Spring Cloud Sleuth Dependencies</description>
<properties>
<zipkin.version>1.16.2</zipkin.version>
<zipkin-reporter.version>0.6.9</zipkin-reporter.version>
<zipkin.version>1.19.2</zipkin.version>
<zipkin-reporter.version>0.6.12</zipkin-reporter.version>
</properties>
<dependencyManagement>
<dependencies>

View File

@@ -59,12 +59,12 @@
<dependency>
<groupId>io.zipkin.java</groupId>
<artifactId>zipkin</artifactId>
<version>1.16.2</version>
<version>1.19.2</version>
</dependency>
<dependency>
<groupId>io.zipkin.java</groupId>
<artifactId>zipkin-server</artifactId>
<version>1.16.2</version>
<version>1.19.2</version>
</dependency>
</dependencies>
</dependencyManagement>

View File

@@ -107,6 +107,13 @@
<artifactId>zipkin-junit</artifactId>
<scope>test</scope>
</dependency>
<!-- otherwise spring boot's version of okhttp kicks zipkin-junit's deps out of alignment -->
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>3.5.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>

View File

@@ -88,6 +88,13 @@
<artifactId>zipkin-junit</artifactId>
<scope>test</scope>
</dependency>
<!-- otherwise spring boot's version of okhttp kicks zipkin-junit's deps out of alignment -->
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>3.5.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>