|
43 | 43 | <dependency> |
44 | 44 | <groupId>org.bouncycastle</groupId> |
45 | 45 | <artifactId>bcprov-jdk18on</artifactId> |
46 | | - <version>1.78.1</version> |
| 46 | + <version>1.82</version> |
47 | 47 | </dependency> |
48 | 48 | <dependency> |
49 | 49 | <groupId>org.slf4j</groupId> |
50 | 50 | <artifactId>slf4j-api</artifactId> |
51 | | - <version>2.0.13</version> |
| 51 | + <version>2.0.17</version> |
52 | 52 | </dependency> |
53 | 53 | <dependency> |
54 | 54 | <groupId>org.junit.jupiter</groupId> |
55 | 55 | <artifactId>junit-jupiter-engine</artifactId> |
56 | | - <version>5.10.3</version> |
| 56 | + <version>5.12.2</version> |
57 | 57 | <scope>test</scope> |
58 | 58 | </dependency> |
59 | 59 | </dependencies> |
|
64 | 64 | <plugin> |
65 | 65 | <groupId>org.apache.maven.plugins</groupId> |
66 | 66 | <artifactId>maven-clean-plugin</artifactId> |
67 | | - <version>3.3.2</version> |
| 67 | + <version>3.4.1</version> |
68 | 68 | </plugin> |
69 | 69 | <plugin> |
70 | 70 | <groupId>org.apache.maven.plugins</groupId> |
|
74 | 74 | <plugin> |
75 | 75 | <groupId>org.apache.maven.plugins</groupId> |
76 | 76 | <artifactId>maven-compiler-plugin</artifactId> |
77 | | - <version>3.13.0</version> |
| 77 | + <version>3.14.0</version> |
78 | 78 | <configuration> |
79 | 79 | <source>${java.version}</source> |
80 | 80 | <target>${java.version}</target> |
|
85 | 85 | <plugin> |
86 | 86 | <groupId>org.apache.maven.plugins</groupId> |
87 | 87 | <artifactId>maven-install-plugin</artifactId> |
88 | | - <version>3.1.2</version> |
| 88 | + <version>3.1.4</version> |
89 | 89 | </plugin> |
90 | 90 | <plugin> |
91 | 91 | <groupId>org.apache.maven.plugins</groupId> |
92 | 92 | <artifactId>maven-deploy-plugin</artifactId> |
93 | | - <version>3.1.2</version> |
| 93 | + <version>3.1.4</version> |
94 | 94 | </plugin> |
95 | 95 | <plugin> |
96 | 96 | <groupId>org.apache.maven.plugins</groupId> |
|
100 | 100 | <plugin> |
101 | 101 | <groupId>org.apache.maven.plugins</groupId> |
102 | 102 | <artifactId>maven-release-plugin</artifactId> |
103 | | - <version>3.0.1</version> |
| 103 | + <version>3.1.1</version> |
104 | 104 | <configuration> |
105 | 105 | <tagNameFormat>v@{project.version}</tagNameFormat> |
106 | 106 | <useReleaseProfile>true</useReleaseProfile> |
|
123 | 123 | <plugin> |
124 | 124 | <groupId>org.apache.maven.plugins</groupId> |
125 | 125 | <artifactId>maven-javadoc-plugin</artifactId> |
126 | | - <version>3.6.3</version> |
| 126 | + <version>3.12.0</version> |
127 | 127 | <executions> |
128 | 128 | <execution> |
129 | 129 | <id>attach-javadocs</id> |
|
141 | 141 | <plugin> |
142 | 142 | <groupId>org.apache.maven.plugins</groupId> |
143 | 143 | <artifactId>maven-surefire-plugin</artifactId> |
144 | | - <version>3.2.5</version> |
| 144 | + <version>3.5.4</version> |
145 | 145 | <configuration> |
146 | 146 | <useFile>false</useFile> |
147 | 147 | </configuration> |
|
178 | 178 | <plugin> |
179 | 179 | <groupId>org.apache.maven.plugins</groupId> |
180 | 180 | <artifactId>maven-gpg-plugin</artifactId> |
181 | | - <version>3.1.0</version> |
| 181 | + <version>3.2.8</version> |
182 | 182 | <executions> |
183 | 183 | <execution> |
184 | 184 | <id>sign-artifacts</id> |
|
196 | 196 | </executions> |
197 | 197 | </plugin> |
198 | 198 | <plugin> |
199 | | - <groupId>org.sonatype.plugins</groupId> |
200 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
201 | | - <version>1.6.13</version> |
| 199 | + <groupId>org.sonatype.central</groupId> |
| 200 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 201 | + <version>0.9.0</version> |
202 | 202 | <extensions>true</extensions> |
203 | 203 | <configuration> |
204 | | - <serverId>ossrh</serverId> |
205 | | - <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
206 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 204 | + <publishingServerId>central</publishingServerId> |
| 205 | + <autoPublish>true</autoPublish> |
207 | 206 | </configuration> |
208 | 207 | </plugin> |
209 | 208 | </plugins> |
210 | 209 | </build> |
211 | | - <distributionManagement> |
212 | | - <snapshotRepository> |
213 | | - <id>ossrh</id> |
214 | | - <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
215 | | - </snapshotRepository> |
216 | | - <repository> |
217 | | - <id>ossrh</id> |
218 | | - <name>maven central</name> |
219 | | - <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
220 | | - </repository> |
221 | | - </distributionManagement> |
222 | 210 | </profile> |
223 | 211 | </profiles> |
224 | 212 | </project> |
0 commit comments