|
50 | 50 | <activemq.version>5.9.1</activemq.version>
|
51 | 51 | <aspectj.version>1.8.0</aspectj.version>
|
52 | 52 | <codahale-metrics.version>3.0.2</codahale-metrics.version>
|
| 53 | + <commons-beanutils.version>1.9.1</commons-beanutils.version> |
| 54 | + <commons-collections.version>3.2.1</commons-collections.version> |
53 | 55 | <commons-dbcp.version>1.4</commons-dbcp.version>
|
| 56 | + <commons-digester.version>2.1</commons-digester.version> |
54 | 57 | <commons-pool.version>1.6</commons-pool.version>
|
55 | 58 | <commons-pool2.version>2.2</commons-pool2.version>
|
56 | 59 | <crashub.version>1.3.0-beta20</crashub.version>
|
|
74 | 77 | <javassist.version>3.18.1-GA</javassist.version> <!-- Same as Hibernate -->
|
75 | 78 | <jedis.version>2.4.1</jedis.version>
|
76 | 79 | <jetty.version>8.1.14.v20131031</jetty.version>
|
| 80 | + <jetty-jsp.version>2.2.0.v201112011158</jetty-jsp.version> |
77 | 81 | <joda-time.version>2.3</joda-time.version>
|
78 | 82 | <jolokia.version>1.2.0</jolokia.version>
|
79 | 83 | <jstl.version>1.2</jstl.version>
|
|
335 | 339 | <artifactId>metrics-servlets</artifactId>
|
336 | 340 | <version>${codahale-metrics.version}</version>
|
337 | 341 | </dependency>
|
| 342 | + <dependency> |
| 343 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 344 | + <artifactId>jackson-annotations</artifactId> |
| 345 | + <version>${jackson.version}</version> |
| 346 | + </dependency> |
338 | 347 | <dependency>
|
339 | 348 | <groupId>com.fasterxml.jackson.core</groupId>
|
340 | 349 | <artifactId>jackson-core</artifactId>
|
|
365 | 374 | <artifactId>HikariCP</artifactId>
|
366 | 375 | <version>${hikaricp.version}</version>
|
367 | 376 | </dependency>
|
| 377 | + <dependency> |
| 378 | + <groupId>commons-beanutils</groupId> |
| 379 | + <artifactId>commons-beanutils</artifactId> |
| 380 | + <version>${commons-beanutils.version}</version> |
| 381 | + <exclusions> |
| 382 | + <exclusion> |
| 383 | + <groupId>commons-logging</groupId> |
| 384 | + <artifactId>commons-logging</artifactId> |
| 385 | + </exclusion> |
| 386 | + </exclusions> |
| 387 | + </dependency> |
| 388 | + <dependency> |
| 389 | + <groupId>commons-collections</groupId> |
| 390 | + <artifactId>commons-collections</artifactId> |
| 391 | + <version>${commons-collections.version}</version> |
| 392 | + </dependency> |
368 | 393 | <dependency>
|
369 | 394 | <groupId>commons-dbcp</groupId>
|
370 | 395 | <artifactId>commons-dbcp</artifactId>
|
371 | 396 | <version>${commons-dbcp.version}</version>
|
372 | 397 | </dependency>
|
| 398 | + <dependency> |
| 399 | + <groupId>commons-digester</groupId> |
| 400 | + <artifactId>commons-digester</artifactId> |
| 401 | + <version>${commons-digester.version}</version> |
| 402 | + <exclusions> |
| 403 | + <exclusion> |
| 404 | + <groupId>commons-logging</groupId> |
| 405 | + <artifactId>commons-logging</artifactId> |
| 406 | + </exclusion> |
| 407 | + </exclusions> |
| 408 | + </dependency> |
373 | 409 | <dependency>
|
374 | 410 | <groupId>commons-pool</groupId>
|
375 | 411 | <artifactId>commons-pool</artifactId>
|
|
446 | 482 | </exclusion>
|
447 | 483 | </exclusions>
|
448 | 484 | </dependency>
|
| 485 | + <dependency> |
| 486 | + <groupId>org.apache.httpcomponents</groupId> |
| 487 | + <artifactId>httpmime</artifactId> |
| 488 | + <version>${httpclient.version}</version> |
| 489 | + </dependency> |
449 | 490 | <dependency>
|
450 | 491 | <groupId>org.apache.httpcomponents</groupId>
|
451 | 492 | <artifactId>httpasyncclient</artifactId>
|
|
668 | 709 | <groupId>org.eclipse.jetty</groupId>
|
669 | 710 | <artifactId>jetty-jsp</artifactId>
|
670 | 711 | <version>${jetty.version}</version>
|
671 |
| - </dependency> |
672 |
| - <dependency> |
673 |
| - <groupId>org.eclipse.jetty</groupId> |
674 |
| - <artifactId>jetty-webapp</artifactId> |
675 |
| - <version>${jetty.version}</version> |
676 | 712 | <exclusions>
|
677 | 713 | <exclusion>
|
678 |
| - <artifactId>javax.servlet</artifactId> |
679 | 714 | <groupId>org.eclipse.jetty.orbit</groupId>
|
| 715 | + <artifactId>javax.servlet</artifactId> |
680 | 716 | </exclusion>
|
681 | 717 | </exclusions>
|
682 | 718 | </dependency>
|
| 719 | + <dependency> |
| 720 | + <groupId>org.eclipse.jetty</groupId> |
| 721 | + <artifactId>jetty-webapp</artifactId> |
| 722 | + <version>${jetty.version}</version> |
| 723 | + </dependency> |
683 | 724 | <dependency>
|
684 | 725 | <groupId>org.eclipse.jetty</groupId>
|
685 | 726 | <artifactId>jetty-util</artifactId>
|
686 | 727 | <version>${jetty.version}</version>
|
687 | 728 | </dependency>
|
| 729 | + <dependency> |
| 730 | + <groupId>org.eclipse.jetty.orbit</groupId> |
| 731 | + <artifactId>javax.servlet.jsp</artifactId> |
| 732 | + <version>${jetty-jsp.version}</version> |
| 733 | + </dependency> |
688 | 734 | <dependency>
|
689 | 735 | <groupId>org.freemarker</groupId>
|
690 | 736 | <artifactId>freemarker</artifactId>
|
|
0 commit comments