-
Notifications
You must be signed in to change notification settings - Fork 2
/
pom.xml
101 lines (92 loc) · 3.38 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2015-2024 Linagora
This program/library is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 2.1 of the License, or (at your
option) any later version.
This program/library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program/library; If not, see http://www.gnu.org/licenses/
for the GNU Lesser General Public License version 2.1.
-->
<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>
<parent>
<artifactId>petals-parent</artifactId>
<groupId>org.ow2.petals</groupId>
<relativePath />
<version>20.4.0-SNAPSHOT</version>
</parent>
<artifactId>petals-camel-parent</artifactId>
<name>Petals ESB - Components - Camel</name>
<version>1.4.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>petals-se-camel</module>
<module>camel-petals</module>
<module>petals-se-camel-junit</module>
</modules>
<properties>
<camel.version>4.0.3</camel.version>
<!-- This is used by child projects to have multi-project integration test coverage report on sonar -->
<sonar.jacoco.itReportPath>${basedir}/../target/jacoco-it.exec</sonar.jacoco.itReportPath>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.ow2.petals</groupId>
<artifactId>petals-cdkbased-components-parent</artifactId>
<version>1.3.0-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-parent</artifactId>
<version>${camel.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<!-- Align JUnit 5 between Camel et Petals -->
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-engine</artifactId>
<version>1.10.0</version>
</dependency>
<dependency>
<!-- Align JUnit 5 between Camel et Petals -->
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-commons</artifactId>
<version>1.10.0</version>
</dependency>
<dependency>
<groupId>org.ow2.petals</groupId>
<artifactId>petals-message-exchange</artifactId>
<version>1.5.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.eclipse.jdt</groupId>
<artifactId>org.eclipse.jdt.annotation</artifactId>
<version>1.1.0</version>
<!-- Prevent the dependency from being included in distributions -->
<scope>provided</scope>
</dependency>
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<version>1.6</version>
</dependency>
</dependencies>
</dependencyManagement>
<scm>
<connection>scm:git:https://github.com/petalslink/petals-se-camel.git</connection>
<developerConnection>scm:git:https://github.com/petalslink/petals-se-camel.git</developerConnection>
<tag>HEAD</tag>
</scm>
</project>