-
Bug
-
Resolution: Done
-
Major
-
fuse-7.5.1-GA
-
None
-
None
It seems like "io.netty:netty-all:jar:4.1.39.Final-redhat-00001" dependency is not available.
Trying to build the pom.xml [1], the maven build fails with Failure to find io.netty:netty-all:jar:4.1.39.Final-redhat-00001
Fuse version from https://access.redhat.com/documentation/en-us/red_hat_fuse/7.5/html-single/deploying_into_spring_boot/index#sb2-bom-file
[1]
<?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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>or.sample</groupId> <artifactId>camel-sb2-demo</artifactId> <packaging>jar</packaging> <version>1.0-SNAPSHOT</version> <name>A Camel Spring Boot Route</name> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <fuse.version>7.5.0.fuse-sb2-750029-redhat-00003</fuse.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.jboss.redhat-fuse</groupId> <artifactId>fuse-springboot-bom</artifactId> <version>${fuse.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- Spring Boot --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <exclusions> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-undertow</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <!-- Camel --> <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-spring-boot-starter</artifactId> </dependency> <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-netty4-http-starter</artifactId> </dependency> </dependencies> </project>