1
+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2
+ xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
3
+ <modelVersion >4.0.0</modelVersion >
4
+ <groupId >com.sibvisions.demos</groupId >
5
+ <artifactId >swarm</artifactId >
6
+ <version >0.0.1-SNAPSHOT</version >
7
+ <packaging >war</packaging >
8
+
9
+ <properties >
10
+ <swarm .version>1.0.0.Alpha5-SNAPSHOT</swarm .version>
11
+ <maven .min.version>3.2.1</maven .min.version>
12
+
13
+ <maven .compiler.target>1.8</maven .compiler.target>
14
+ <maven .compiler.source>1.8</maven .compiler.source>
15
+
16
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
17
+ </properties >
18
+
19
+ <repositories >
20
+ <repository >
21
+ <id >maven-restlet</id >
22
+ <name >Public online Restlet repository</name >
23
+ <url >http://maven.restlet.org</url >
24
+ </repository >
25
+ <!--
26
+ <repository>
27
+ <id>sonatype-nexus-snapshots</id>
28
+ <name>Sonatype Snapshots</name>
29
+ <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
30
+ </repository>
31
+ -->
32
+ </repositories >
33
+
34
+ <dependencies >
35
+ <dependency >
36
+ <groupId >org.wildfly.swarm</groupId >
37
+ <artifactId >wildfly-swarm-undertow</artifactId >
38
+ <version >${swarm.version} </version >
39
+ </dependency >
40
+ <dependency >
41
+ <groupId >com.sibvisions.vaadin</groupId >
42
+ <artifactId >jvxvaadin-server</artifactId >
43
+ <version >1.3</version >
44
+ <exclusions >
45
+ <exclusion >
46
+ <artifactId >jackson-core-asl</artifactId >
47
+ <groupId >org.codehaus.jackson</groupId >
48
+ </exclusion >
49
+ <exclusion >
50
+ <artifactId >jackson-mapper-asl</artifactId >
51
+ <groupId >org.codehaus.jackson</groupId >
52
+ </exclusion >
53
+ </exclusions >
54
+ </dependency >
55
+ <dependency >
56
+ <groupId >javax.servlet</groupId >
57
+ <artifactId >servlet-api</artifactId >
58
+ <version >2.4</version >
59
+ </dependency >
60
+ <dependency >
61
+ <groupId >commons-fileupload</groupId >
62
+ <artifactId >commons-fileupload</artifactId >
63
+ <version >1.2.2</version >
64
+ </dependency >
65
+ <dependency >
66
+ <groupId >com.fasterxml.jackson.core</groupId >
67
+ <artifactId >jackson-core</artifactId >
68
+ <version >2.4.0</version >
69
+ </dependency >
70
+ <dependency >
71
+ <groupId >com.fasterxml.jackson.core</groupId >
72
+ <artifactId >jackson-annotations</artifactId >
73
+ <version >2.4.0</version >
74
+ </dependency >
75
+ <dependency >
76
+ <groupId >com.fasterxml.jackson.core</groupId >
77
+ <artifactId >jackson-databind</artifactId >
78
+ <version >2.4.0</version >
79
+ </dependency >
80
+ <dependency >
81
+ <groupId >com.fasterxml.jackson.dataformat</groupId >
82
+ <artifactId >jackson-dataformat-smile</artifactId >
83
+ <version >2.4.0</version >
84
+ </dependency >
85
+ <dependency >
86
+ <groupId >com.fasterxml.jackson.dataformat</groupId >
87
+ <artifactId >jackson-dataformat-csv</artifactId >
88
+ <version >2.4.0</version >
89
+ </dependency >
90
+ <dependency >
91
+ <groupId >com.fasterxml.jackson.dataformat</groupId >
92
+ <artifactId >jackson-dataformat-xml</artifactId >
93
+ <version >2.4.0</version >
94
+ </dependency >
95
+ <dependency >
96
+ <groupId >com.fasterxml.jackson.dataformat</groupId >
97
+ <artifactId >jackson-dataformat-yaml</artifactId >
98
+ <version >2.4.0</version >
99
+ </dependency >
100
+ <dependency >
101
+ <groupId >com.fasterxml.jackson.module</groupId >
102
+ <artifactId >jackson-module-jsonSchema</artifactId >
103
+ <version >2.4.0</version >
104
+ </dependency >
105
+ <dependency >
106
+ <groupId >com.fasterxml.jackson.module</groupId >
107
+ <artifactId >jackson-module-jaxb-annotations</artifactId >
108
+ <version >2.4.0</version >
109
+ </dependency >
110
+ <dependency >
111
+ <groupId >javax.mail</groupId >
112
+ <artifactId >javax.mail-api</artifactId >
113
+ <version >1.5.4</version >
114
+ </dependency >
115
+ <dependency >
116
+ <groupId >javax.activation</groupId >
117
+ <artifactId >activation</artifactId >
118
+ <version >1.1.1</version >
119
+ </dependency >
120
+ <dependency >
121
+ <groupId >org.restlet.jee</groupId >
122
+ <artifactId >org.restlet</artifactId >
123
+ <version >2.3.2</version >
124
+ </dependency >
125
+ <dependency >
126
+ <groupId >org.restlet.jee</groupId >
127
+ <artifactId >org.restlet.ext.jackson</artifactId >
128
+ <version >2.3.2</version >
129
+ </dependency >
130
+ <dependency >
131
+ <groupId >org.restlet.jee</groupId >
132
+ <artifactId >org.restlet.ext.servlet</artifactId >
133
+ <version >2.3.2</version >
134
+ </dependency >
135
+
136
+ <dependency >
137
+ <groupId >org.jboss.msc</groupId >
138
+ <artifactId >jboss-msc</artifactId >
139
+ <version >1.2.6.Final</version >
140
+ </dependency >
141
+ <dependency >
142
+ <groupId >org.jboss.spec.javax.sql</groupId >
143
+ <artifactId >jboss-javax-sql-api_7.0_spec</artifactId >
144
+ <version >1.1.0.Final</version >
145
+ </dependency >
146
+
147
+ </dependencies >
148
+
149
+ <build >
150
+ <plugins >
151
+ <plugin >
152
+ <artifactId >maven-war-plugin</artifactId >
153
+ <version >2.6</version >
154
+ <configuration >
155
+ <failOnMissingWebXml >false</failOnMissingWebXml >
156
+ </configuration >
157
+ </plugin >
158
+ <plugin >
159
+ <groupId >org.wildfly.swarm</groupId >
160
+ <artifactId >wildfly-swarm-plugin</artifactId >
161
+ <version >${swarm.version} </version >
162
+ <executions >
163
+ <execution >
164
+ <goals >
165
+ <goal >package</goal >
166
+ </goals >
167
+ </execution >
168
+ </executions >
169
+ </plugin >
170
+ </plugins >
171
+ </build >
172
+
173
+ </project >
0 commit comments