-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
19 lines (19 loc) · 785 Bytes
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.acme.sample</groupId>
<artifactId>camel-quarkus-hellos</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<camel-version>3.5.0</camel-version>
<quarkus-version>1.8.0.Final</quarkus-version>
<spring.boot-version>2.3.3.RELEASE</spring.boot-version>
</properties>
<modules>
<module>hello-camel-spring-boot</module>
<module>hello-camel-quarkus-jvm-mode</module>
<module>hello-camel-quarkus-native-mode</module>
</modules>
</project>