53 lines
1.8 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>fr.simplex-software.quarkus.camel.integrations</groupId>
<artifactId>aws-camelk</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>aws-camelk-jaxrs</artifactId>
<name>AWS CamelK :: The JAX-RS Module</name>
<dependencies>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy-reactive-jsonb</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-smallrye-openapi</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-smallrye-metrics</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-smallrye-fault-tolerance</artifactId>
</dependency>
<dependency>
<groupId>fr.simplex-software.quarkus.camel.integrations</groupId>
<artifactId>aws-camelk-provider</artifactId>
</dependency>
<dependency>
<groupId>fr.simplex-software.quarkus.camel.integrations</groupId>
<artifactId>aws-camelk-model</artifactId>
</dependency>
<dependency>
<groupId>fr.simplex-software.quarkus.camel.integrations</groupId>
<artifactId>aws-camelk-api</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>io.quarkus.platform</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>