-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
131 lines (115 loc) · 4.52 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
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
<?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">
<!-- Object Model Version -->
<modelVersion>4.0.0</modelVersion>
<!-- Referencing Common Parent Configuration -->
<parent>
<artifactId>blog-samples</artifactId>
<groupId>eu.sydisnet</groupId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<!-- Artifact Metadata -->
<artifactId>camel-integration</artifactId>
<packaging>war</packaging>
<!-- Project INFORMATION -->
<name>camel-integration</name>
<description>Sample which explains integration between Camel and JBoss AS/WildFly 8.x</description>
<!-- Specific Properties -->
<properties>
<javaee.api.version>7.0</javaee.api.version>
<camel.version>2.12.2</camel.version>
<junit.version>4.11</junit.version>
<weldse.version>2.1.1.Final</weldse.version>
<wildfly.arquillian.container.version>8.0.0.CR1</wildfly.arquillian.container.version>
</properties>
<!-- Custom Build Config -->
<build>
<!-- Set the name of the war, used as the context root when the app
is deployed -->
<finalName>${project.artifactId}</finalName>
<!-- Test Resources are overridden in order to add some resources in test classes easily -->
<testResources>
<testResource>
<directory>src/main/webapp</directory>
</testResource>
<testResource>
<directory>src/main/resources</directory>
</testResource>
<testResource>
<directory>src/test/resources</directory>
</testResource>
</testResources>
</build>
<!-- Dependencies -->
<dependencies>
<!-- Java EE API -->
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>${javaee.api.version}</version>
<scope>provided</scope>
</dependency>
<!-- Camel Core Container -->
<!-- Camel Core (EIP) -->
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-core</artifactId>
<version>${camel.version}</version>
<scope>compile</scope>
</dependency>
<!-- Camel Exec (Component) -->
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-exec</artifactId>
<version>${camel.version}</version>
<scope>compile</scope>
</dependency>
<!-- Testing -->
<!-- JUnit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<!-- Weld Embedded Container -->
<dependency>
<groupId>org.jboss.weld.se</groupId>
<artifactId>weld-se</artifactId>
<version>${weldse.version}</version>
<scope>test</scope>
</dependency>
<!-- Arquillian Support -->
<!-- Arquillian JUnit Container -->
<dependency>
<groupId>org.jboss.arquillian.junit</groupId>
<artifactId>arquillian-junit-container</artifactId>
<scope>test</scope>
</dependency>
<!-- Graphene2 Over Drone Stack-->
<!-- Although we don't use Graphene 2 here, importing this fixes some dependencies about MavenResolver -->
<dependency>
<groupId>org.jboss.arquillian.graphene</groupId>
<artifactId>graphene-webdriver</artifactId>
<version>${org.jboss.arquillian.graphene2.version}</version>
<type>pom</type>
<scope>test</scope>
</dependency>
<!-- Arquillian Servlet Protocol required by JBoss AS 7+ -->
<dependency>
<groupId>org.jboss.arquillian.protocol</groupId>
<artifactId>arquillian-protocol-servlet</artifactId>
<scope>test</scope>
</dependency>
<!-- Specific Testing -->
<!-- Arquillian WildFly Support -->
<dependency>
<groupId>org.wildfly</groupId>
<artifactId>wildfly-arquillian-container-managed</artifactId>
<version>${wildfly.arquillian.container.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>