Files
cameleer-deploy-demo/pom.xml
hsiegeln a4bc40b241
Some checks failed
CI / build (push) Successful in 26s
CI / docker (push) Successful in 57s
CI / deploy (push) Failing after 27s
fix: downgrade to Java 17 for CI build compatibility
Build container has JDK 17, not 21. Also replaced
Thread.ofVirtual() (Java 21) with standard Thread.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-03 09:50:38 +02:00

44 lines
1.4 KiB
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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.4.3</version>
<relativePath/>
</parent>
<groupId>com.cameleer</groupId>
<artifactId>cameleer-deploy-demo</artifactId>
<version>0.1.0-SNAPSHOT</version>
<name>Cameleer Deploy Demo</name>
<description>Demo: upload Camel JARs, build containers with agent injection, deploy to K8s</description>
<properties>
<java.version>17</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>