Java – spring sleuth and Zipkin: artifact IO not found zipkin. brave:brave-bom:pom:4.16. 3-SNAPSHOT
I have a spring boot 2.0 0 rest service, I tried to ask sleuth and Zipkin to send the trace to my localhost Zipkin server
The application worked well, and I added two dependencies spring cloud starter sleuth and spring cloud sleuth Zipkin to my POM XML Once I do this, I now get a compilation error:
By deleting my M2 folder and update (twice), I make sure it's not a damaged Maven package problem
Why do I receive this error and how to solve it?
This is my POM xml:
<?xml version="1.0" encoding="UTF-8"?> <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"> <modelVersion>4.0.0</modelVersion> <groupId>io.urig</groupId> <artifactId>inventory</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>jar</packaging> <name>inventory</name> <description>Demo project for Spring Boot</description> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.0.RELEASE</version> <relativePath /> <!-- lookup parent from repository --> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> <spring-cloud.version>Finchley.M8</spring-cloud.version> <sleuth.version>2.0.0.M8</sleuth.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.retry</groupId> <artifactId>spring-retry</artifactId> </dependency> <!-- Sleuth automatically adds trace interceptors when in the classpath --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-sleuth</artifactId> </dependency> <!-- Sends trace data to zipkin over http (defaults to http://localhost:9411/api/v2/spans) --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-sleuth-zipkin</artifactId> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>${spring-cloud.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-sleuth</artifactId> <version>${sleuth.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> <repositories> <repository> <id>spring-milestones</id> <name>Spring Milestones</name> <url>https://repo.spring.io/libs-milestone</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> </project>
Solution
This is really strange because you are using the latest version, and in GitHub, spring cloud sleuth depends on < brake version> 4.17. 2< /brave. version\u0026gt;. And I don't think 4.16 exists in Maven repo 3-snapshot version (just checked 2.0.0.m8 depending on this version) if you change to < sleuth version> 2.0. 0.M7< /sleuth. version\u0026gt; It did find the required dependencies https://github.com/spring-cloud/spring-cloud-sleuth/blob/master/pom.xml