|
251 | 251 | </annotationProcessorPaths> |
252 | 252 | </configuration> |
253 | 253 | </execution> |
254 | | - <execution> |
255 | | - <id>jdk25</id> |
256 | | - <goals> |
257 | | - <goal>compile</goal> |
258 | | - </goals> |
259 | | - <configuration> |
260 | | - <release>25</release> |
261 | | - <compileSourceRoots> |
262 | | - <compileSourceRoot>${project.basedir}/src/main/java25</compileSourceRoot> |
263 | | - </compileSourceRoots> |
264 | | - <multiReleaseOutput>true</multiReleaseOutput> |
265 | | - </configuration> |
266 | | - </execution> |
267 | 254 | </executions> |
268 | 255 | </plugin> |
269 | 256 |
|
|
458 | 445 | <vertx.jackson.defaultReadMaxNameLength>100</vertx.jackson.defaultReadMaxNameLength> |
459 | 446 | <vertx.jackson.defaultReadMaxTokenCount>100</vertx.jackson.defaultReadMaxTokenCount> |
460 | 447 | </systemProperties> |
| 448 | + <classpathDependencyExcludes> |
| 449 | + <classpathDependencyExclude>tools.jackson.core:jackson-core</classpathDependencyExclude> |
| 450 | + </classpathDependencyExcludes> |
461 | 451 | </configuration> |
462 | 452 | </execution> |
463 | 453 | <execution> |
|
473 | 463 | <classpathDependencyExcludes> |
474 | 464 | <classpathDependencyExclude>com.fasterxml.jackson.core:jackson-core</classpathDependencyExclude> |
475 | 465 | <classpathDependencyExclude>com.fasterxml.jackson.core:jackson-databind</classpathDependencyExclude> |
| 466 | + <classpathDependencyExclude>tools.jackson.core:jackson-core</classpathDependencyExclude> |
476 | 467 | </classpathDependencyExcludes> |
477 | 468 | </configuration> |
478 | 469 | </execution> |
|
503 | 494 | </includes> |
504 | 495 | <classpathDependencyExcludes> |
505 | 496 | <classpathDependencyExclude>com.fasterxml.jackson.core:jackson-databind</classpathDependencyExclude> |
| 497 | + <classpathDependencyExclude>tools.jackson.core:jackson-core</classpathDependencyExclude> |
506 | 498 | </classpathDependencyExcludes> |
507 | 499 | </configuration> |
508 | 500 | </execution> |
|
522 | 514 | <classpathDependencyExcludes> |
523 | 515 | <classpathDependencyExclude>com.fasterxml.jackson.core:jackson-core</classpathDependencyExclude> |
524 | 516 | <classpathDependencyExclude>com.fasterxml.jackson.core:jackson-databind</classpathDependencyExclude> |
| 517 | + <classpathDependencyExclude>tools.jackson.core:jackson-core</classpathDependencyExclude> |
525 | 518 | </classpathDependencyExcludes> |
526 | 519 | </configuration> |
527 | 520 | </execution> |
|
772 | 765 |
|
773 | 766 | <profiles> |
774 | 767 |
|
| 768 | + <profile> |
| 769 | + <id>Java25</id> |
| 770 | + <activation> |
| 771 | + <jdk>[25,)</jdk> |
| 772 | + </activation> |
| 773 | + <build> |
| 774 | + <pluginManagement> |
| 775 | + <plugins> |
| 776 | + <plugin> |
| 777 | + <artifactId>maven-compiler-plugin</artifactId> |
| 778 | + <executions> |
| 779 | + <execution> |
| 780 | + <id>Java25</id> |
| 781 | + <goals> |
| 782 | + <goal>compile</goal> |
| 783 | + </goals> |
| 784 | + <configuration> |
| 785 | + <release>25</release> |
| 786 | + <compileSourceRoots> |
| 787 | + <compileSourceRoot>${project.basedir}/src/main/java25</compileSourceRoot> |
| 788 | + </compileSourceRoots> |
| 789 | + <multiReleaseOutput>true</multiReleaseOutput> |
| 790 | + </configuration> |
| 791 | + </execution> |
| 792 | + </executions> |
| 793 | + </plugin> |
| 794 | + </plugins> |
| 795 | + </pluginManagement> |
| 796 | + </build> |
| 797 | + </profile> |
| 798 | + |
775 | 799 | <profile> |
776 | 800 | <id>NativeEpoll</id> |
777 | 801 | <properties> |
|
0 commit comments