You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 27, 2017. It is now read-only.
when building from scratch, you edit the zipkin-server/pom.xml like so.. there's probably value in showing how to do this just using a commandline and an existing zipkin jar. (which would be overriding the classpath I think)
<!-- Static content for the web UI -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>zipkin-autoconfigure-ui</artifactId>
<optional>true</optional>
<exclusions>
<exclusion>
<groupId>${project.groupId}</groupId>
<artifactId>zipkin-ui</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.zipkin.ui</groupId>
<artifactId>zipkin-ui</artifactId>
<version>0.0.1</version>
</dependency>
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
when building from scratch, you edit the zipkin-server/pom.xml like so.. there's probably value in showing how to do this just using a commandline and an existing zipkin jar. (which would be overriding the classpath I think)
The text was updated successfully, but these errors were encountered: