|
1 <?xml version="1.0" encoding="UTF-8"?> |
|
2 <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"> |
|
3 |
|
4 <modelVersion>4.0.0</modelVersion> |
|
5 <parent> |
|
6 <groupId>org.iri_research.renkan</groupId> |
|
7 <artifactId>renkan</artifactId> |
|
8 <version>0.7.11</version> |
|
9 </parent> |
|
10 <artifactId>renkan-web</artifactId> |
|
11 <packaging>war</packaging> |
|
12 |
|
13 <properties> |
|
14 <surefire-version>2.16</surefire-version> |
|
15 <coweb-version>1.0.1-SNAPSHOT</coweb-version> |
|
16 <cowebx-version>1.0</cowebx-version> |
|
17 <jersey-version>2.5.1</jersey-version> |
|
18 <spring-version>3.2.6.RELEASE</spring-version> |
|
19 <spring-data-mongodb-version>1.3.3.RELEASE</spring-data-mongodb-version> |
|
20 <spring-security-version>3.2.0.RELEASE</spring-security-version> |
|
21 <spring-data-commons-version>1.6.3.RELEASE</spring-data-commons-version> |
|
22 <spring-data-jpa-version>1.4.3.RELEASE</spring-data-jpa-version> |
|
23 <jetty-plugin-version>8.1.15.v20140411</jetty-plugin-version> |
|
24 <jetty-version>8.1.15.v20140411</jetty-version> |
|
25 <junit-version>4.11</junit-version> |
|
26 <thymeleaf-version>2.1.3.RELEASE</thymeleaf-version> |
|
27 <thymeleaf-springsecurity-version>2.1.1.RELEASE</thymeleaf-springsecurity-version> |
|
28 <thymeleaf-joda-dialect-version>0.0.3</thymeleaf-joda-dialect-version> |
|
29 <cometd-version>2.7.0</cometd-version> |
|
30 <jackson-version>2.2.3</jackson-version> |
|
31 <joda-version>2.3</joda-version> |
|
32 <mongo-driver-version>2.11.4</mongo-driver-version> |
|
33 <jaxrs-api-version>2.0</jaxrs-api-version> |
|
34 <javax-annotation-version>1.2</javax-annotation-version> |
|
35 <javax-inject-version>1</javax-inject-version> |
|
36 <javax-servlet-api-version>3.0.1</javax-servlet-api-version> |
|
37 <javax-servlet-jstl-version>1.2</javax-servlet-jstl-version> |
|
38 <javax-persistence-api-version>1.0.2</javax-persistence-api-version> |
|
39 <javax-validation-api-version>1.1.0.Final</javax-validation-api-version> |
|
40 <hibernate-validator-version>5.0.1.Final</hibernate-validator-version> |
|
41 <slf4j-log4j12-version>1.7.5</slf4j-log4j12-version> |
|
42 <nekohtml-version>1.9.19</nekohtml-version> |
|
43 <commons-codec-version>1.8</commons-codec-version> |
|
44 <bson4jackson-version>2.2.3</bson4jackson-version> |
|
45 <guava-version>17.0</guava-version> |
|
46 <json-path-version>0.9.1</json-path-version> |
|
47 <commons-io-version>2.4</commons-io-version> |
|
48 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
49 </properties> |
|
50 |
|
51 <build> |
|
52 <defaultGoal>package</defaultGoal> |
|
53 <plugins> |
|
54 <plugin> |
|
55 <groupId>org.apache.maven.plugins</groupId> |
|
56 <artifactId>maven-compiler-plugin</artifactId> |
|
57 <version>3.1</version> |
|
58 <configuration> |
|
59 <source>1.7</source> |
|
60 <target>1.7</target> |
|
61 <compilerArgs> |
|
62 <arg>-Xlint</arg> |
|
63 </compilerArgs> |
|
64 </configuration> |
|
65 </plugin> |
|
66 |
|
67 <plugin> |
|
68 <groupId>org.mortbay.jetty</groupId> |
|
69 <artifactId>jetty-maven-plugin</artifactId> |
|
70 <version>${jetty-plugin-version}</version> |
|
71 <configuration> |
|
72 <scanIntervalSeconds>10</scanIntervalSeconds> |
|
73 <webApp> |
|
74 <contextPath>/renkan</contextPath> |
|
75 </webApp> |
|
76 </configuration> |
|
77 </plugin> |
|
78 |
|
79 <plugin> |
|
80 <artifactId>maven-war-plugin</artifactId> |
|
81 <version>2.3</version> |
|
82 <configuration> |
|
83 <failOnError>false</failOnError> |
|
84 <archive> |
|
85 <manifest> |
|
86 <addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
|
87 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> |
|
88 </manifest> |
|
89 </archive> |
|
90 <overlays> |
|
91 <overlay> |
|
92 <groupId>org.opencoweb</groupId> |
|
93 <artifactId>coweb-javascript</artifactId> |
|
94 <type>war</type> |
|
95 <excludes> |
|
96 <exclude>META-INF/**</exclude> |
|
97 <exclude>WEB-INF/**</exclude> |
|
98 </excludes> |
|
99 <targetPath>lib</targetPath> |
|
100 </overlay> |
|
101 <overlay> |
|
102 <groupId>org.opencoweb.cowebx</groupId> |
|
103 <artifactId>cowebx-widgets-dojo</artifactId> |
|
104 <type>war</type> |
|
105 <excludes> |
|
106 <exclude>META-INF/**</exclude> |
|
107 <exclude>WEB-INF/**</exclude> |
|
108 </excludes> |
|
109 <targetPath>lib/cowebx/dojo</targetPath> |
|
110 </overlay> |
|
111 </overlays> |
|
112 <webResources> |
|
113 <resource> |
|
114 <directory>../../client/dist/js</directory> |
|
115 <includes> |
|
116 <include>*.js</include> |
|
117 </includes> |
|
118 <targetPath>static/js</targetPath> |
|
119 </resource> |
|
120 <resource> |
|
121 <directory>../../client/dist/lib</directory> |
|
122 <targetPath>static/lib</targetPath> |
|
123 </resource> |
|
124 <resource> |
|
125 <directory>../../client/dist/css</directory> |
|
126 <includes> |
|
127 <include>*.css</include> |
|
128 </includes> |
|
129 <targetPath>static/css</targetPath> |
|
130 </resource> |
|
131 <resource> |
|
132 <directory>../../client/dist/img</directory> |
|
133 <targetPath>static/img</targetPath> |
|
134 </resource> |
|
135 <resource> |
|
136 <directory>../../client/dist/data</directory> |
|
137 <includes> |
|
138 <include>properties.json</include> |
|
139 </includes> |
|
140 <targetPath>static/data</targetPath> |
|
141 </resource> |
|
142 </webResources> |
|
143 </configuration> |
|
144 </plugin> |
|
145 <plugin> |
|
146 <groupId>org.apache.maven.plugins</groupId> |
|
147 <artifactId>maven-surefire-plugin</artifactId> |
|
148 <version>${surefire-version}</version> |
|
149 </plugin> |
|
150 </plugins> |
|
151 </build> |
|
152 <repositories> |
|
153 <repository> |
|
154 <id>lib</id> |
|
155 <name>lib</name> |
|
156 <releases> |
|
157 <enabled>true</enabled> |
|
158 <checksumPolicy>ignore</checksumPolicy> |
|
159 </releases> |
|
160 <url>file://${project.basedir}/lib</url> |
|
161 </repository> |
|
162 <repository> |
|
163 <id>spring-maven-release</id> |
|
164 <name>Spring Maven Release Repository</name> |
|
165 <url>http://maven.springframework.org/release</url> |
|
166 </repository> |
|
167 <repository> |
|
168 <id>spring-maven-milestone</id> |
|
169 <name>Spring Maven MILESTONE Repository</name> |
|
170 <url>http://maven.springframework.org/milestone</url> |
|
171 </repository> |
|
172 <repository> |
|
173 <id>spring-release</id> |
|
174 <name>Spring Maven SNAPSHOT Repository</name> |
|
175 <url>http://repo.springsource.org/release</url> |
|
176 </repository> |
|
177 <repository> |
|
178 <snapshots> |
|
179 <enabled>false</enabled> |
|
180 </snapshots> |
|
181 <id>central</id> |
|
182 <name>libs-release</name> |
|
183 <url>http://repo.springsource.org/libs-release</url> |
|
184 </repository> |
|
185 </repositories> |
|
186 <dependencies> |
|
187 <dependency> |
|
188 <groupId>org.iri_research.renkan</groupId> |
|
189 <artifactId>renkan-core</artifactId> |
|
190 <version>${project.version}</version> |
|
191 </dependency> |
|
192 <dependency> |
|
193 <groupId>javax.inject</groupId> |
|
194 <artifactId>javax.inject</artifactId> |
|
195 <version>${javax-inject-version}</version> |
|
196 </dependency> |
|
197 <dependency> |
|
198 <groupId>javax.servlet</groupId> |
|
199 <artifactId>javax.servlet-api</artifactId> |
|
200 <version>${javax-servlet-api-version}</version> |
|
201 </dependency> |
|
202 <dependency> |
|
203 <groupId>javax.ws.rs</groupId> |
|
204 <artifactId>javax.ws.rs-api</artifactId> |
|
205 <version>${jaxrs-api-version}</version> |
|
206 </dependency> |
|
207 <dependency> |
|
208 <groupId>javax.annotation</groupId> |
|
209 <artifactId>javax.annotation-api</artifactId> |
|
210 <version>${javax-annotation-version}</version> |
|
211 </dependency> |
|
212 <dependency> |
|
213 <groupId>org.cometd.java</groupId> |
|
214 <artifactId>bayeux-api</artifactId> |
|
215 <version>${cometd-version}</version> |
|
216 <exclusions> |
|
217 <exclusion> |
|
218 <groupId>org.eclipse.jetty</groupId> |
|
219 <artifactId>jetty-client</artifactId> |
|
220 </exclusion> |
|
221 <exclusion> |
|
222 <groupId>org.eclipse.jetty</groupId> |
|
223 <artifactId>jetty-continuation</artifactId> |
|
224 </exclusion> |
|
225 <exclusion> |
|
226 <groupId>org.eclipse.jetty</groupId> |
|
227 <artifactId>jetty-http</artifactId> |
|
228 </exclusion> |
|
229 <exclusion> |
|
230 <groupId>org.eclipse.jetty</groupId> |
|
231 <artifactId>jetty-io</artifactId> |
|
232 </exclusion> |
|
233 <exclusion> |
|
234 <groupId>org.eclipse.jetty</groupId> |
|
235 <artifactId>jetty-jmx</artifactId> |
|
236 </exclusion> |
|
237 <exclusion> |
|
238 <groupId>org.eclipse.jetty</groupId> |
|
239 <artifactId>jetty-util</artifactId> |
|
240 </exclusion> |
|
241 <exclusion> |
|
242 <groupId>org.eclipse.jetty</groupId> |
|
243 <artifactId>jetty-websocket</artifactId> |
|
244 </exclusion> |
|
245 </exclusions> |
|
246 </dependency> |
|
247 <dependency> |
|
248 <groupId>org.cometd.java</groupId> |
|
249 <artifactId>cometd-java-common</artifactId> |
|
250 <version>${cometd-version}</version> |
|
251 <exclusions> |
|
252 <exclusion> |
|
253 <groupId>org.eclipse.jetty</groupId> |
|
254 <artifactId>jetty-client</artifactId> |
|
255 </exclusion> |
|
256 <exclusion> |
|
257 <groupId>org.eclipse.jetty</groupId> |
|
258 <artifactId>jetty-continuation</artifactId> |
|
259 </exclusion> |
|
260 <exclusion> |
|
261 <groupId>org.eclipse.jetty</groupId> |
|
262 <artifactId>jetty-http</artifactId> |
|
263 </exclusion> |
|
264 <exclusion> |
|
265 <groupId>org.eclipse.jetty</groupId> |
|
266 <artifactId>jetty-io</artifactId> |
|
267 </exclusion> |
|
268 <exclusion> |
|
269 <groupId>org.eclipse.jetty</groupId> |
|
270 <artifactId>jetty-jmx</artifactId> |
|
271 </exclusion> |
|
272 <exclusion> |
|
273 <groupId>org.eclipse.jetty</groupId> |
|
274 <artifactId>jetty-util</artifactId> |
|
275 </exclusion> |
|
276 <exclusion> |
|
277 <groupId>org.eclipse.jetty</groupId> |
|
278 <artifactId>jetty-websocket</artifactId> |
|
279 </exclusion> |
|
280 </exclusions> |
|
281 </dependency> |
|
282 <dependency> |
|
283 <groupId>org.cometd.java</groupId> |
|
284 <artifactId>cometd-java-annotations</artifactId> |
|
285 <version>${cometd-version}</version> |
|
286 <exclusions> |
|
287 <exclusion> |
|
288 <groupId>org.eclipse.jetty</groupId> |
|
289 <artifactId>jetty-client</artifactId> |
|
290 </exclusion> |
|
291 <exclusion> |
|
292 <groupId>org.eclipse.jetty</groupId> |
|
293 <artifactId>jetty-continuation</artifactId> |
|
294 </exclusion> |
|
295 <exclusion> |
|
296 <groupId>org.eclipse.jetty</groupId> |
|
297 <artifactId>jetty-http</artifactId> |
|
298 </exclusion> |
|
299 <exclusion> |
|
300 <groupId>org.eclipse.jetty</groupId> |
|
301 <artifactId>jetty-io</artifactId> |
|
302 </exclusion> |
|
303 <exclusion> |
|
304 <groupId>org.eclipse.jetty</groupId> |
|
305 <artifactId>jetty-jmx</artifactId> |
|
306 </exclusion> |
|
307 <exclusion> |
|
308 <groupId>org.eclipse.jetty</groupId> |
|
309 <artifactId>jetty-util</artifactId> |
|
310 </exclusion> |
|
311 <exclusion> |
|
312 <groupId>org.eclipse.jetty</groupId> |
|
313 <artifactId>jetty-websocket</artifactId> |
|
314 </exclusion> |
|
315 </exclusions> |
|
316 </dependency> |
|
317 <dependency> |
|
318 <groupId>org.cometd.java</groupId> |
|
319 <artifactId>cometd-websocket-jetty</artifactId> |
|
320 <version>${cometd-version}</version> |
|
321 <exclusions> |
|
322 <exclusion> |
|
323 <groupId>org.eclipse.jetty</groupId> |
|
324 <artifactId>jetty-client</artifactId> |
|
325 </exclusion> |
|
326 <exclusion> |
|
327 <groupId>org.eclipse.jetty</groupId> |
|
328 <artifactId>jetty-continuation</artifactId> |
|
329 </exclusion> |
|
330 <exclusion> |
|
331 <groupId>org.eclipse.jetty</groupId> |
|
332 <artifactId>jetty-http</artifactId> |
|
333 </exclusion> |
|
334 <exclusion> |
|
335 <groupId>org.eclipse.jetty</groupId> |
|
336 <artifactId>jetty-io</artifactId> |
|
337 </exclusion> |
|
338 <exclusion> |
|
339 <groupId>org.eclipse.jetty</groupId> |
|
340 <artifactId>jetty-jmx</artifactId> |
|
341 </exclusion> |
|
342 <exclusion> |
|
343 <groupId>org.eclipse.jetty</groupId> |
|
344 <artifactId>jetty-util</artifactId> |
|
345 </exclusion> |
|
346 <exclusion> |
|
347 <groupId>org.eclipse.jetty</groupId> |
|
348 <artifactId>jetty-websocket</artifactId> |
|
349 </exclusion> |
|
350 </exclusions> |
|
351 </dependency> |
|
352 <dependency> |
|
353 <groupId>org.opencoweb</groupId> |
|
354 <artifactId>coweb-bots</artifactId> |
|
355 <version>${coweb-version}</version> |
|
356 <exclusions> |
|
357 <exclusion> |
|
358 <groupId>org.eclipse.jetty</groupId> |
|
359 <artifactId>jetty-client</artifactId> |
|
360 </exclusion> |
|
361 <exclusion> |
|
362 <groupId>org.eclipse.jetty</groupId> |
|
363 <artifactId>jetty-continuation</artifactId> |
|
364 </exclusion> |
|
365 <exclusion> |
|
366 <groupId>org.eclipse.jetty</groupId> |
|
367 <artifactId>jetty-http</artifactId> |
|
368 </exclusion> |
|
369 <exclusion> |
|
370 <groupId>org.eclipse.jetty</groupId> |
|
371 <artifactId>jetty-io</artifactId> |
|
372 </exclusion> |
|
373 <exclusion> |
|
374 <groupId>org.eclipse.jetty</groupId> |
|
375 <artifactId>jetty-jmx</artifactId> |
|
376 </exclusion> |
|
377 <exclusion> |
|
378 <groupId>org.eclipse.jetty</groupId> |
|
379 <artifactId>jetty-util</artifactId> |
|
380 </exclusion> |
|
381 <exclusion> |
|
382 <groupId>org.eclipse.jetty</groupId> |
|
383 <artifactId>jetty-websocket</artifactId> |
|
384 </exclusion> |
|
385 </exclusions> |
|
386 </dependency> |
|
387 <dependency> |
|
388 <groupId>org.opencoweb</groupId> |
|
389 <artifactId>coweb-server</artifactId> |
|
390 <version>${coweb-version}</version> |
|
391 <exclusions> |
|
392 <exclusion> |
|
393 <groupId>org.eclipse.jetty</groupId> |
|
394 <artifactId>jetty-client</artifactId> |
|
395 </exclusion> |
|
396 <exclusion> |
|
397 <groupId>org.eclipse.jetty</groupId> |
|
398 <artifactId>jetty-continuation</artifactId> |
|
399 </exclusion> |
|
400 <exclusion> |
|
401 <groupId>org.eclipse.jetty</groupId> |
|
402 <artifactId>jetty-http</artifactId> |
|
403 </exclusion> |
|
404 <exclusion> |
|
405 <groupId>org.eclipse.jetty</groupId> |
|
406 <artifactId>jetty-io</artifactId> |
|
407 </exclusion> |
|
408 <exclusion> |
|
409 <groupId>org.eclipse.jetty</groupId> |
|
410 <artifactId>jetty-jmx</artifactId> |
|
411 </exclusion> |
|
412 <exclusion> |
|
413 <groupId>org.eclipse.jetty</groupId> |
|
414 <artifactId>jetty-util</artifactId> |
|
415 </exclusion> |
|
416 <exclusion> |
|
417 <groupId>org.eclipse.jetty</groupId> |
|
418 <artifactId>jetty-websocket</artifactId> |
|
419 </exclusion> |
|
420 </exclusions> |
|
421 </dependency> |
|
422 <dependency> |
|
423 <groupId>org.opencoweb</groupId> |
|
424 <artifactId>coweb-javascript</artifactId> |
|
425 <version>${coweb-version}</version> |
|
426 <type>war</type> |
|
427 </dependency> |
|
428 <dependency> |
|
429 <groupId>org.opencoweb.cowebx</groupId> |
|
430 <artifactId>cowebx-widgets-dojo</artifactId> |
|
431 <version>${cowebx-version}</version> |
|
432 <type>war</type> |
|
433 </dependency> |
|
434 <dependency> |
|
435 <groupId>org.glassfish.jersey.core</groupId> |
|
436 <artifactId>jersey-server</artifactId> |
|
437 <version>${jersey-version}</version> |
|
438 </dependency> |
|
439 <!--dependency> |
|
440 <groupId>org.glassfish.jersey.media</groupId> |
|
441 <artifactId>jersey-media-json-jackson</artifactId> |
|
442 <version>${jersey-version}</version> |
|
443 </dependency--> |
|
444 <dependency> |
|
445 <groupId>org.glassfish.jersey.ext</groupId> |
|
446 <artifactId>jersey-spring3</artifactId> |
|
447 <version>${jersey-version}</version> |
|
448 </dependency> |
|
449 <dependency> |
|
450 <groupId>org.glassfish.jersey.test-framework.providers</groupId> |
|
451 <artifactId>jersey-test-framework-provider-grizzly2</artifactId> |
|
452 <version>${jersey-version}</version> |
|
453 <scope>test</scope> |
|
454 </dependency> |
|
455 <dependency> |
|
456 <groupId>org.mongodb</groupId> |
|
457 <artifactId>mongo-java-driver</artifactId> |
|
458 <version>${mongo-driver-version}</version> |
|
459 </dependency> |
|
460 <dependency> |
|
461 <groupId>org.slf4j</groupId> |
|
462 <artifactId>slf4j-log4j12</artifactId> |
|
463 <version>${slf4j-log4j12-version}</version> |
|
464 </dependency> |
|
465 <dependency> |
|
466 <groupId>org.springframework</groupId> |
|
467 <artifactId>spring-core</artifactId> |
|
468 <version>${spring-version}</version> |
|
469 </dependency> |
|
470 <dependency> |
|
471 <groupId>org.springframework</groupId> |
|
472 <artifactId>spring-context</artifactId> |
|
473 <version>${spring-version}</version> |
|
474 </dependency> |
|
475 <dependency> |
|
476 <groupId>org.springframework</groupId> |
|
477 <artifactId>spring-web</artifactId> |
|
478 <version>${spring-version}</version> |
|
479 </dependency> |
|
480 <dependency> |
|
481 <groupId>org.springframework</groupId> |
|
482 <artifactId>spring-test</artifactId> |
|
483 <version>${spring-version}</version> |
|
484 <scope>test</scope> |
|
485 </dependency> |
|
486 <dependency> |
|
487 <groupId>org.springframework</groupId> |
|
488 <artifactId>spring-webmvc</artifactId> |
|
489 <version>${spring-version}</version> |
|
490 </dependency> |
|
491 <dependency> |
|
492 <groupId>org.springframework.data</groupId> |
|
493 <artifactId>spring-data-commons</artifactId> |
|
494 <version>${spring-data-commons-version}</version> |
|
495 </dependency> |
|
496 <dependency> |
|
497 <groupId>org.springframework.data</groupId> |
|
498 <artifactId>spring-data-jpa</artifactId> |
|
499 <version>${spring-data-jpa-version}</version> |
|
500 </dependency> |
|
501 <dependency> |
|
502 <groupId>org.springframework.data</groupId> |
|
503 <artifactId>spring-data-mongodb</artifactId> |
|
504 <version>${spring-data-mongodb-version}</version> |
|
505 </dependency> |
|
506 <dependency> |
|
507 <groupId>javax.persistence</groupId> |
|
508 <artifactId>persistence-api</artifactId> |
|
509 <version>${javax-persistence-api-version}</version> |
|
510 </dependency> |
|
511 <dependency> |
|
512 <groupId>junit</groupId> |
|
513 <artifactId>junit</artifactId> |
|
514 <version>${junit-version}</version> |
|
515 <scope>test</scope> |
|
516 </dependency> |
|
517 <dependency> |
|
518 <groupId>javax.servlet</groupId> |
|
519 <artifactId>jstl</artifactId> |
|
520 <version>${javax-servlet-jstl-version}</version> |
|
521 <scope>runtime</scope> |
|
522 </dependency> |
|
523 <dependency> |
|
524 <groupId>org.thymeleaf</groupId> |
|
525 <artifactId>thymeleaf</artifactId> |
|
526 <version>${thymeleaf-version}</version> |
|
527 </dependency> |
|
528 <dependency> |
|
529 <groupId>org.thymeleaf</groupId> |
|
530 <artifactId>thymeleaf-spring3</artifactId> |
|
531 <version>${thymeleaf-version}</version> |
|
532 </dependency> |
|
533 <dependency> |
|
534 <groupId>org.thymeleaf.extras</groupId> |
|
535 <artifactId>thymeleaf-extras-springsecurity3</artifactId> |
|
536 <version>${thymeleaf-springsecurity-version}</version> |
|
537 </dependency> |
|
538 <dependency> |
|
539 <groupId>org.thymeleaf.extras</groupId> |
|
540 <artifactId>thymeleaf-joda-dialect</artifactId> |
|
541 <version>${thymeleaf-joda-dialect-version}</version> |
|
542 </dependency> |
|
543 <dependency> |
|
544 <groupId>net.sourceforge.nekohtml</groupId> |
|
545 <artifactId>nekohtml</artifactId> |
|
546 <version>${nekohtml-version}</version> |
|
547 </dependency> |
|
548 <dependency> |
|
549 <groupId>com.fasterxml.jackson.core</groupId> |
|
550 <artifactId>jackson-core</artifactId> |
|
551 <version>${jackson-version}</version> |
|
552 </dependency> |
|
553 <dependency> |
|
554 <groupId>com.fasterxml.jackson.core</groupId> |
|
555 <artifactId>jackson-databind</artifactId> |
|
556 <version>${jackson-version}</version> |
|
557 </dependency> |
|
558 <dependency> |
|
559 <groupId>com.fasterxml.jackson.core</groupId> |
|
560 <artifactId>jackson-annotations</artifactId> |
|
561 <version>${jackson-version}</version> |
|
562 </dependency> |
|
563 <dependency> |
|
564 <groupId>com.fasterxml.jackson.jaxrs</groupId> |
|
565 <artifactId>jackson-jaxrs-json-provider</artifactId> |
|
566 <version>${jackson-version}</version> |
|
567 </dependency> |
|
568 <dependency> |
|
569 <groupId>com.fasterxml.jackson.datatype</groupId> |
|
570 <artifactId>jackson-datatype-joda</artifactId> |
|
571 <version>${jackson-version}</version> |
|
572 </dependency> |
|
573 <dependency> |
|
574 <groupId>commons-codec</groupId> |
|
575 <artifactId>commons-codec</artifactId> |
|
576 <version>${commons-codec-version}</version> |
|
577 </dependency> |
|
578 <dependency> |
|
579 <groupId>org.eclipse.jetty.aggregate</groupId> |
|
580 <artifactId>jetty-all</artifactId> |
|
581 <version>${jetty-version}</version> |
|
582 </dependency> |
|
583 <dependency> |
|
584 <groupId>org.springframework.security</groupId> |
|
585 <artifactId>spring-security-core</artifactId> |
|
586 <version>${spring-security-version}</version> |
|
587 </dependency> |
|
588 <dependency> |
|
589 <groupId>org.springframework.security</groupId> |
|
590 <artifactId>spring-security-web</artifactId> |
|
591 <version>${spring-security-version}</version> |
|
592 </dependency> |
|
593 <dependency> |
|
594 <groupId>org.springframework.security</groupId> |
|
595 <artifactId>spring-security-config</artifactId> |
|
596 <version>${spring-security-version}</version> |
|
597 </dependency> |
|
598 <dependency> |
|
599 <groupId>org.springframework.security</groupId> |
|
600 <artifactId>spring-security-acl</artifactId> |
|
601 <version>${spring-security-version}</version> |
|
602 </dependency> |
|
603 <dependency> |
|
604 <groupId>org.springframework.security</groupId> |
|
605 <artifactId>spring-security-taglibs</artifactId> |
|
606 <version>${spring-security-version}</version> |
|
607 </dependency> |
|
608 <dependency> |
|
609 <groupId>de.undercouch</groupId> |
|
610 <artifactId>bson4jackson</artifactId> |
|
611 <version>${bson4jackson-version}</version> |
|
612 </dependency> |
|
613 <dependency> |
|
614 <groupId>joda-time</groupId> |
|
615 <artifactId>joda-time</artifactId> |
|
616 <version>${joda-version}</version> |
|
617 </dependency> |
|
618 <dependency> |
|
619 <groupId>javax.validation</groupId> |
|
620 <artifactId>validation-api</artifactId> |
|
621 <version>${javax-validation-api-version}</version> |
|
622 </dependency> |
|
623 <dependency> |
|
624 <groupId>org.hibernate</groupId> |
|
625 <artifactId>hibernate-validator</artifactId> |
|
626 <version>${hibernate-validator-version}</version> |
|
627 </dependency> |
|
628 <dependency> |
|
629 <groupId>com.google.guava</groupId> |
|
630 <artifactId>guava</artifactId> |
|
631 <version>${guava-version}</version> |
|
632 </dependency> |
|
633 <dependency> |
|
634 <groupId>com.jayway.jsonpath</groupId> |
|
635 <artifactId>json-path-assert</artifactId> |
|
636 <version>${json-path-version}</version> |
|
637 <scope>test</scope> |
|
638 </dependency> |
|
639 <dependency> |
|
640 <groupId>commons-io</groupId> |
|
641 <artifactId>commons-io</artifactId> |
|
642 <version>${commons-io-version}</version> |
|
643 <scope>test</scope> |
|
644 </dependency> |
|
645 </dependencies> |
|
646 <organization> |
|
647 <name>IRI</name> |
|
648 <url>http://www.iri.centrepompidou.fr</url> |
|
649 </organization> |
|
650 </project> |