|
57 | 57 | <micrometer.version>1.9.1</micrometer.version>
|
58 | 58 | <swiftmq-client.version>12.2.2</swiftmq-client.version>
|
59 | 59 | <picocli.version>4.6.3</picocli.version>
|
60 |
| - <jetty.version>9.4.48.v20220622</jetty.version> |
| 60 | + <jetty.version>11.0.11</jetty.version> |
61 | 61 | <guava.version>31.1-jre</guava.version>
|
62 | 62 | <commons-compress.version>1.21</commons-compress.version>
|
63 | 63 | <zstd-jni.version>1.5.2-3</zstd-jni.version>
|
|
189 | 189 |
|
190 | 190 | <dependency>
|
191 | 191 | <groupId>org.eclipse.jetty</groupId>
|
192 |
| - <artifactId>jetty-servlet</artifactId> |
| 192 | + <artifactId>jetty-server</artifactId> |
193 | 193 | <version>${jetty.version}</version>
|
194 | 194 | <optional>true</optional>
|
195 | 195 | </dependency>
|
|
578 | 578 | </build>
|
579 | 579 |
|
580 | 580 | <profiles>
|
| 581 | + |
| 582 | + <profile> |
| 583 | + <id>perf</id> |
| 584 | + <activation> |
| 585 | + <jdk>[11,)</jdk> |
| 586 | + </activation> |
| 587 | + <build> |
| 588 | + <plugins> |
| 589 | + <plugin> |
| 590 | + <groupId>org.codehaus.mojo</groupId> |
| 591 | + <artifactId>build-helper-maven-plugin</artifactId> |
| 592 | + <version>3.3.0</version> |
| 593 | + <executions> |
| 594 | + <execution> |
| 595 | + <id>add-source</id> |
| 596 | + <phase>generate-sources</phase> |
| 597 | + <goals> |
| 598 | + <goal>add-source</goal> |
| 599 | + </goals> |
| 600 | + <configuration> |
| 601 | + <sources> |
| 602 | + <source>src/performance-tool/java</source> |
| 603 | + </sources> |
| 604 | + </configuration> |
| 605 | + </execution> |
| 606 | + <execution> |
| 607 | + <id>add-test-source</id> |
| 608 | + <phase>generate-test-sources</phase> |
| 609 | + <goals> |
| 610 | + <goal>add-test-source</goal> |
| 611 | + </goals> |
| 612 | + <configuration> |
| 613 | + <sources> |
| 614 | + <source>src/performance-tool/test</source> |
| 615 | + </sources> |
| 616 | + </configuration> |
| 617 | + </execution> |
| 618 | + </executions> |
| 619 | + </plugin> |
| 620 | + </plugins> |
| 621 | + </build> |
| 622 | + </profile> |
| 623 | + |
581 | 624 | <profile>
|
582 | 625 | <id>performance-tool</id>
|
583 | 626 | <dependencies>
|
|
621 | 664 |
|
622 | 665 | <dependency>
|
623 | 666 | <groupId>org.eclipse.jetty</groupId>
|
624 |
| - <artifactId>jetty-servlet</artifactId> |
| 667 | + <artifactId>jetty-server</artifactId> |
625 | 668 | <version>${jetty.version}</version>
|
626 | 669 | </dependency>
|
627 | 670 |
|
|
0 commit comments