-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpom.xml
More file actions
132 lines (121 loc) · 4.48 KB
/
pom.xml
File metadata and controls
132 lines (121 loc) · 4.48 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright © 2013-2020, The SeedStack authors <http://seedstack.org>
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
-->
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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>org.seedstack.samples</groupId>
<artifactId>samples</artifactId>
<version>20.11-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>camel-sample</artifactId>
<properties>
<camel.version>3.1.0</camel.version>
<commons-io.version>2.7</commons-io.version>
<activemq.version>5.15.9</activemq.version>
<jms-api.version>1.1-rev-1</jms-api.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.seedstack</groupId>
<artifactId>seedstack-maven-plugin</artifactId>
<executions>
<execution>
<id>build-capsule</id>
<goals>
<goal>package</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.seedstack.seed</groupId>
<artifactId>seed-core</artifactId>
</dependency>
<dependency>
<groupId>org.seedstack.seed</groupId>
<artifactId>seed-security-core</artifactId>
</dependency>
<dependency>
<groupId>org.seedstack.seed</groupId>
<artifactId>seed-web-core</artifactId>
</dependency>
<dependency>
<groupId>org.seedstack.seed</groupId>
<artifactId>seed-web-security</artifactId>
</dependency>
<dependency>
<groupId>org.seedstack.seed</groupId>
<artifactId>seed-rest-jersey2</artifactId>
</dependency>
<dependency>
<groupId>org.seedstack.seed</groupId>
<artifactId>seed-web-undertow</artifactId>
</dependency>
<dependency>
<groupId>org.seedstack.business</groupId>
<artifactId>business-core</artifactId>
</dependency>
<dependency>
<groupId>org.seedstack.addons.modelmapper</groupId>
<artifactId>modelmapper</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</dependency>
<!--JMS And active MQ-->
<dependency>
<groupId>org.seedstack.addons.jms</groupId>
<artifactId>jms</artifactId>
</dependency>
<dependency>
<groupId>javax.jms</groupId>
<artifactId>jms-api</artifactId>
<version>${jms-api.version}</version>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-camel</artifactId>
<version>${activemq.version}</version>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-broker</artifactId>
<version>${activemq.version}</version>
</dependency>
<!--The Seedstack plugin subject of this sample project-->
<dependency>
<groupId>org.seedstack.addons.camel</groupId>
<artifactId>camel</artifactId>
</dependency>
<!--Camel dependencies -->
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-jms</artifactId>
<version>${camel.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons-io.version}</version>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>org.seedstack.seed</groupId>
<artifactId>seed-testing-junit4</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>