-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpom.xml
executable file
·32 lines (28 loc) · 1.03 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<!-- Identifier for the parent POM -->
<parent>
<groupId>io.jeannyil</groupId>
<artifactId>demo-ceq-dependencies</artifactId>
<version>3.15.2.redhat-00003</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>camel-quarkus-datagrid-tester</artifactId>
<version>1.0.0</version>
<dependencies>
<!-- Camel Quarkus extensions -->
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-minio</artifactId>
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-timer</artifactId>
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-infinispan</artifactId>
</dependency>
</dependencies>
</project>