|
1 | 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 https://maven.apache.org/maven-v4_0_0.xsd"> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd"> |
3 | 5 | <modelVersion>4.0.0</modelVersion>
|
4 | 6 |
|
5 | 7 | <groupId>org.springframework.vault</groupId>
|
|
27 | 29 | <kotlin-coroutines.version>1.6.2</kotlin-coroutines.version>
|
28 | 30 | <mockk.version>1.12.4</mockk.version>
|
29 | 31 | <mockito-core.version>4.6.1</mockito-core.version>
|
30 |
| - <spring.version>6.0.0-SNAPSHOT</spring.version> |
31 |
| - <spring-data-bom.version>2022.0.0-M5</spring-data-bom.version> |
| 32 | + <spring.version>6.0.0-RC1</spring.version> |
| 33 | + <spring-data-bom.version>2022.0.0-RC1</spring-data-bom.version> |
32 | 34 | <spring-security-bom.version>6.0.0-M6</spring-security-bom.version>
|
33 |
| - <reactor.version>2022.0.0-M4</reactor.version> |
| 35 | + <reactor.version>2022.0.0-RC1</reactor.version> |
34 | 36 | <java.version>17</java.version>
|
35 | 37 | <project.type>multi</project.type>
|
36 | 38 | <dist.id>spring-vault</dist.id>
|
|
39 | 41 | <doc.resources>${project.build.directory}/doc-resources</doc.resources>
|
40 | 42 |
|
41 | 43 | <!-- To be overridden by individual modules -->
|
42 |
| - <java-module-name /> |
| 44 | + <java-module-name/> |
43 | 45 | </properties>
|
44 | 46 |
|
45 | 47 | <inceptionYear>2016</inceptionYear>
|
|
319 | 321 | </executions>
|
320 | 322 | </plugin>
|
321 | 323 |
|
| 324 | + <plugin> |
| 325 | + <groupId>org.apache.maven.plugins</groupId> |
| 326 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 327 | + <executions> |
| 328 | + <execution> |
| 329 | + <id>enforce-java-version</id> |
| 330 | + <goals> |
| 331 | + <goal>enforce</goal> |
| 332 | + </goals> |
| 333 | + <configuration> |
| 334 | + <rules> |
| 335 | + <requireJavaVersion> |
| 336 | + <version>17</version> |
| 337 | + </requireJavaVersion> |
| 338 | + </rules> |
| 339 | + </configuration> |
| 340 | + </execution> |
| 341 | + </executions> |
| 342 | + </plugin> |
| 343 | + |
322 | 344 | <plugin>
|
323 | 345 | <groupId>org.apache.maven.plugins</groupId>
|
324 | 346 | <artifactId>maven-surefire-plugin</artifactId>
|
|
437 | 459 | </configuration>
|
438 | 460 | </plugin>
|
439 | 461 |
|
| 462 | + <plugin> |
| 463 | + <groupId>org.apache.maven.plugins</groupId> |
| 464 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 465 | + <version>3.1.0</version> |
| 466 | + </plugin> |
| 467 | + |
440 | 468 | <plugin>
|
441 | 469 | <groupId>org.apache.maven.plugins</groupId>
|
442 | 470 | <artifactId>maven-surefire-plugin</artifactId>
|
|
492 | 520 | <link>
|
493 | 521 | https://projectreactor.io/docs/core/release/api/
|
494 | 522 | </link>
|
495 |
| - <link>https://docs.oracle.com/en/java/javase/17/docs/api/</link> |
| 523 | + <link>https://docs.oracle.com/en/java/javase/17/docs/api/ |
| 524 | + </link> |
496 | 525 | </links>
|
497 | 526 | </configuration>
|
498 | 527 | </plugin>
|
|
671 | 700 | <plugin>
|
672 | 701 | <groupId>org.apache.maven.plugins</groupId>
|
673 | 702 | <artifactId>maven-enforcer-plugin</artifactId>
|
674 |
| - <version>3.1.0</version> |
675 | 703 | <executions>
|
676 | 704 | <execution>
|
677 | 705 | <id>enforce-no-third-party-snapshots</id>
|
|
680 | 708 | </goals>
|
681 | 709 | <configuration>
|
682 | 710 | <rules>
|
683 |
| - <requireReleaseDeps /> |
684 |
| - <NoSnapshotDependenciesInDependencyManagementRule implementation="de.smartics.maven.enforcer.rule.NoSnapshotsInDependencyManagementRule"> |
| 711 | + <requireReleaseDeps/> |
| 712 | + <NoSnapshotDependenciesInDependencyManagementRule |
| 713 | + implementation="de.smartics.maven.enforcer.rule.NoSnapshotsInDependencyManagementRule"> |
685 | 714 | <onlyWhenRelease>true</onlyWhenRelease>
|
686 | 715 | </NoSnapshotDependenciesInDependencyManagementRule>
|
687 | 716 | </rules>
|
|
741 | 770 | <snapshotRepository>
|
742 | 771 | <id>sonatype-nexus-snapshots</id>
|
743 | 772 | <name>Sonatype Nexus Snapshots</name>
|
744 |
| - <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> |
| 773 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots/ |
| 774 | + </url> |
745 | 775 | </snapshotRepository>
|
746 | 776 | <repository>
|
747 | 777 | <id>sonatype-nexus-staging</id>
|
|
854 | 884 | <includeEnvVars>false</includeEnvVars>
|
855 | 885 | </artifactory>
|
856 | 886 | <publisher>
|
857 |
| - <contextUrl>{{artifactory.server}}</contextUrl> |
| 887 | + <contextUrl>{{artifactory.server}} |
| 888 | + </contextUrl> |
858 | 889 | <username>{{artifactory.username}}</username>
|
859 | 890 | <password>{{artifactory.password}}</password>
|
860 |
| - <repoKey>{{artifactory.staging-repository}}</repoKey> |
861 |
| - <snapshotRepoKey>{{artifactory.staging-repository}}</snapshotRepoKey> |
| 891 | + <repoKey>{{artifactory.staging-repository}} |
| 892 | + </repoKey> |
| 893 | + <snapshotRepoKey> |
| 894 | + {{artifactory.staging-repository}} |
| 895 | + </snapshotRepoKey> |
862 | 896 | </publisher>
|
863 | 897 | <buildInfo>
|
864 |
| - <buildName>{{artifactory.build-name}}</buildName> |
865 |
| - <buildNumber>{{artifactory.build-number}}</buildNumber> |
| 898 | + <buildName>{{artifactory.build-name}} |
| 899 | + </buildName> |
| 900 | + <buildNumber>{{artifactory.build-number}} |
| 901 | + </buildNumber> |
866 | 902 | <buildUrl>{{BUILD_URL}}</buildUrl>
|
867 | 903 | </buildInfo>
|
868 | 904 | </configuration>
|
|
0 commit comments