|
82 | 82 | <artifactId>maven-enforcer-plugin</artifactId> |
83 | 83 | <version>${enforcer-plugin-version}</version> |
84 | 84 | <executions> |
85 | | - <execution> |
86 | | - <id>enforce-versions</id> |
87 | | - <goals> |
88 | | - <goal>enforce</goal> |
89 | | - </goals> |
90 | | - <configuration> |
91 | | - <rules> |
92 | | - <DependencyConvergence/> |
93 | | - </rules> |
94 | | - </configuration> |
95 | | - </execution> |
| 85 | + <execution> |
| 86 | + <id>enforce-versions</id> |
| 87 | + <goals> |
| 88 | + <goal>enforce</goal> |
| 89 | + </goals> |
| 90 | + <configuration> |
| 91 | + <rules> |
| 92 | + <DependencyConvergence/> |
| 93 | + </rules> |
| 94 | + </configuration> |
| 95 | + </execution> |
96 | 96 | </executions> |
97 | | - </plugin> |
| 97 | + </plugin> |
98 | 98 | <plugin> |
99 | 99 | <artifactId>maven-dependency-plugin</artifactId> |
100 | 100 | <executions> |
|
487 | 487 | <artifactId>javassist</artifactId> |
488 | 488 | <version>${javassist-version}</version> |
489 | 489 | </dependency> |
| 490 | + <dependency> |
| 491 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 492 | + <artifactId>jackson-annotations</artifactId> |
| 493 | + <version>${jackson-version}</version> |
| 494 | + </dependency> |
| 495 | + <dependency> |
| 496 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 497 | + <artifactId>jackson-databind</artifactId> |
| 498 | + <version>${jackson-version}</version> |
| 499 | + </dependency> |
| 500 | + <dependency> |
| 501 | + <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 502 | + <artifactId>jackson-dataformat-yaml</artifactId> |
| 503 | + <version>${jackson-version}</version> |
| 504 | + </dependency> |
| 505 | + <dependency> |
| 506 | + <groupId>joda-time</groupId> |
| 507 | + <artifactId>joda-time</artifactId> |
| 508 | + <version>${joda-time-version}</version> |
| 509 | + </dependency> |
| 510 | + <dependency> |
| 511 | + <groupId>org.joda</groupId> |
| 512 | + <artifactId>joda-convert</artifactId> |
| 513 | + <version>${joda-version}</version> |
| 514 | + </dependency> |
| 515 | + <dependency> |
| 516 | + <groupId>ch.qos.logback</groupId> |
| 517 | + <artifactId>logback-classic</artifactId> |
| 518 | + <version>${logback-version}</version> |
| 519 | + </dependency> |
| 520 | + <dependency> |
| 521 | + <groupId>ch.qos.logback</groupId> |
| 522 | + <artifactId>logback-core</artifactId> |
| 523 | + <version>${logback-version}</version> |
| 524 | + </dependency> |
| 525 | + <dependency> |
| 526 | + <groupId>javax.validation</groupId> |
| 527 | + <artifactId>validation-api</artifactId> |
| 528 | + <version>${validation-api-version}</version> |
| 529 | + </dependency> |
| 530 | + <dependency> |
| 531 | + <groupId>org.immutables</groupId> |
| 532 | + <artifactId>value</artifactId> |
| 533 | + <version>2.4.4</version> |
| 534 | + </dependency> |
| 535 | + <dependency> |
| 536 | + <groupId>javax.ws.rs</groupId> |
| 537 | + <artifactId>jsr311-api</artifactId> |
| 538 | + <version>1.1.1</version> |
| 539 | + </dependency> |
| 540 | + <dependency> |
| 541 | + <groupId>org.glassfish.hk2.external</groupId> |
| 542 | + <artifactId>javax.inject</artifactId> |
| 543 | + <version>2.2.0</version> |
| 544 | + </dependency> |
| 545 | + <dependency> |
| 546 | + <groupId>org.hibernate</groupId> |
| 547 | + <artifactId>hibernate-validator</artifactId> |
| 548 | + <version>${hibernate-validator-version}</version> |
| 549 | + </dependency> |
| 550 | + <dependency> |
| 551 | + <groupId>org.glassfish.jersey.media</groupId> |
| 552 | + <artifactId>jersey-media-multipart</artifactId> |
| 553 | + <version>${jersey2-version}</version> |
| 554 | + </dependency> |
| 555 | + <dependency> |
| 556 | + <groupId>org.glassfish.jersey.containers</groupId> |
| 557 | + <artifactId>jersey-container-servlet-core</artifactId> |
| 558 | + <version>${jersey2-version}</version> |
| 559 | + </dependency> |
| 560 | + <dependency> |
| 561 | + <groupId>com.sun.jersey.contribs</groupId> |
| 562 | + <artifactId>jersey-multipart</artifactId> |
| 563 | + <version>${jersey-version}</version> |
| 564 | + </dependency> |
| 565 | + <dependency> |
| 566 | + <groupId>com.openpojo</groupId> |
| 567 | + <artifactId>openpojo</artifactId> |
| 568 | + <version>0.8.0</version> |
| 569 | + </dependency> |
| 570 | + <dependency> |
| 571 | + <groupId>org.powermock</groupId> |
| 572 | + <artifactId>powermock-module-testng</artifactId> |
| 573 | + <version>${powermock.version}</version> |
| 574 | + <scope>test</scope> |
| 575 | + </dependency> |
| 576 | + <dependency> |
| 577 | + <groupId>org.powermock</groupId> |
| 578 | + <artifactId>powermock-api-mockito</artifactId> |
| 579 | + <version>${powermock.version}</version> |
| 580 | + </dependency> |
| 581 | + <dependency> |
| 582 | + <groupId>org.mockito</groupId> |
| 583 | + <artifactId>mockito-core</artifactId> |
| 584 | + <version>${mockito-version}</version> |
| 585 | + </dependency> |
| 586 | + <dependency> |
| 587 | + <groupId>asm</groupId> |
| 588 | + <artifactId>asm</artifactId> |
| 589 | + <version>3.3.1</version> |
| 590 | + </dependency> |
490 | 591 | </dependencies> |
491 | 592 | </dependencyManagement> |
492 | 593 | <properties> |
|
518 | 619 | <commons-io-version>2.5</commons-io-version> |
519 | 620 | <enforcer-plugin-version>1.4</enforcer-plugin-version> |
520 | 621 | <failsafe-plugin-version>2.19.1</failsafe-plugin-version> |
| 622 | + <validation-api-version>1.1.0.Final</validation-api-version> |
521 | 623 | </properties> |
522 | 624 | </project> |
0 commit comments