|
6 | 6 |
|
7 | 7 | <groupId>io.github.officiallysingh</groupId>
|
8 | 8 | <artifactId>spring-boot-problem-handler</artifactId>
|
9 |
| - <version>1.5</version> |
| 9 | + <version>1.6</version> |
10 | 10 | <name>spring-boot-problem-handler</name>
|
11 | 11 | <description>Commons exception handler library</description>
|
12 | 12 | <url>https://github.com/officiallysingh/spring-boot-problem-handler</url>
|
|
31 | 31 | </developers>
|
32 | 32 |
|
33 | 33 | <properties>
|
34 |
| - <java.version>17</java.version> |
35 |
| - <spring-boot.version>3.1.4</spring-boot.version> |
| 34 | + <java.version>21</java.version> |
| 35 | + <spring-boot.version>3.2.0</spring-boot.version> |
36 | 36 | <spring-cloud.version>2022.0.4</spring-cloud.version>
|
37 | 37 | <jakarta.servlet-api.version>6.0.0</jakarta.servlet-api.version>
|
38 | 38 | <jakarta.annotation-api.version>2.1.1</jakarta.annotation-api.version>
|
39 |
| - <swagger-request-validator-spring-webmvc.version>2.34.1</swagger-request-validator-spring-webmvc.version> |
| 39 | + <swagger-request-validator-spring-webmvc.version>2.39.0</swagger-request-validator-spring-webmvc.version> |
40 | 40 | <commons-collections4.version>4.4</commons-collections4.version>
|
41 |
| - <guava.version>32.1.2-jre</guava.version> |
| 41 | + <guava.version>32.1.3-jre</guava.version> |
42 | 42 | <failsafe.version>2.4.4</failsafe.version>
|
43 | 43 |
|
44 | 44 | <scm.connection>scm:git:git@github.com:officiallysingh/spring-boot-problem-handler.git</scm.connection>
|
|
158 | 158 | <developerConnection>${scm.connection}</developerConnection>
|
159 | 159 | </scm>
|
160 | 160 |
|
161 |
| - <distributionManagement> |
162 |
| - <snapshotRepository> |
163 |
| - <id>ossrh</id> |
164 |
| - <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
165 |
| - </snapshotRepository> |
166 |
| - <repository> |
167 |
| - <id>ossrh</id> |
168 |
| - <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
169 |
| - </repository> |
170 |
| - </distributionManagement> |
171 |
| - |
172 | 161 | <build>
|
173 | 162 | <plugins>
|
174 | 163 | <!-- Auto format code during compilation -->
|
|
206 | 195 | <!-- </execution>-->
|
207 | 196 | <!-- </executions>-->
|
208 | 197 | <!-- </plugin>-->
|
209 |
| - |
210 |
| - <plugin> |
211 |
| - <groupId>org.apache.maven.plugins</groupId> |
212 |
| - <artifactId>maven-release-plugin</artifactId> |
213 |
| - <version>${maven-release-plugin.version}</version> |
214 |
| - </plugin> |
215 |
| - <plugin> |
216 |
| - <groupId>org.apache.maven.plugins</groupId> |
217 |
| - <artifactId>maven-deploy-plugin</artifactId> |
218 |
| - <version>${maven-deploy-plugin.version}</version> |
219 |
| - </plugin> |
220 |
| - <plugin> |
221 |
| - <groupId>org.apache.maven.plugins</groupId> |
222 |
| - <artifactId>maven-source-plugin</artifactId> |
223 |
| - <version>${maven-source-plugin.version}</version> |
224 |
| - <executions> |
225 |
| - <execution> |
226 |
| - <id>attach-sources</id> |
227 |
| - <goals> |
228 |
| - <goal>jar-no-fork</goal> |
229 |
| - </goals> |
230 |
| - </execution> |
231 |
| - </executions> |
232 |
| - </plugin> |
233 |
| - <plugin> |
234 |
| - <groupId>org.apache.maven.plugins</groupId> |
235 |
| - <artifactId>maven-javadoc-plugin</artifactId> |
236 |
| - <version>${maven-javadoc-plugin.version}</version> |
237 |
| - <executions> |
238 |
| - <execution> |
239 |
| - <id>attach-javadocs</id> |
240 |
| - <goals> |
241 |
| - <goal>jar</goal> |
242 |
| - </goals> |
243 |
| - </execution> |
244 |
| - </executions> |
245 |
| - <configuration> |
246 |
| - <source>${maven.compiler.source}</source> |
247 |
| - </configuration> |
248 |
| - </plugin> |
249 |
| - <plugin> |
250 |
| - <groupId>org.apache.maven.plugins</groupId> |
251 |
| - <artifactId>maven-gpg-plugin</artifactId> |
252 |
| - <version>${maven-gpg-plugin.version}</version> |
253 |
| - <executions> |
254 |
| - <execution> |
255 |
| - <id>sign-artifacts</id> |
256 |
| - <phase>verify</phase> |
257 |
| - <goals> |
258 |
| - <goal>sign</goal> |
259 |
| - </goals> |
260 |
| - </execution> |
261 |
| - </executions> |
262 |
| - </plugin> |
263 |
| - <plugin> |
264 |
| - <groupId>org.sonatype.plugins</groupId> |
265 |
| - <artifactId>nexus-staging-maven-plugin</artifactId> |
266 |
| - <version>${nexus-staging-maven-plugin.version}</version> |
267 |
| - <extensions>true</extensions> |
268 |
| - <configuration> |
269 |
| - <serverId>ossrh</serverId> |
270 |
| - <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
271 |
| - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
272 |
| - </configuration> |
273 |
| - </plugin> |
274 | 198 | </plugins>
|
275 | 199 | </build>
|
276 | 200 |
|
| 201 | + <profiles> |
| 202 | + <profile> |
| 203 | + <id>publish-artefacts</id> |
| 204 | + <activation> |
| 205 | + <activeByDefault>false</activeByDefault> |
| 206 | + </activation> |
| 207 | + |
| 208 | + <distributionManagement> |
| 209 | + <snapshotRepository> |
| 210 | + <id>ossrh</id> |
| 211 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 212 | + </snapshotRepository> |
| 213 | + <repository> |
| 214 | + <id>ossrh</id> |
| 215 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 216 | + </repository> |
| 217 | + </distributionManagement> |
| 218 | + |
| 219 | + <build> |
| 220 | + <plugins> |
| 221 | + <plugin> |
| 222 | + <groupId>org.apache.maven.plugins</groupId> |
| 223 | + <artifactId>maven-release-plugin</artifactId> |
| 224 | + <version>${maven-release-plugin.version}</version> |
| 225 | + </plugin> |
| 226 | + <plugin> |
| 227 | + <groupId>org.apache.maven.plugins</groupId> |
| 228 | + <artifactId>maven-deploy-plugin</artifactId> |
| 229 | + <version>${maven-deploy-plugin.version}</version> |
| 230 | + </plugin> |
| 231 | + <plugin> |
| 232 | + <groupId>org.apache.maven.plugins</groupId> |
| 233 | + <artifactId>maven-source-plugin</artifactId> |
| 234 | + <version>${maven-source-plugin.version}</version> |
| 235 | + <executions> |
| 236 | + <execution> |
| 237 | + <id>attach-sources</id> |
| 238 | + <goals> |
| 239 | + <goal>jar-no-fork</goal> |
| 240 | + </goals> |
| 241 | + </execution> |
| 242 | + </executions> |
| 243 | + </plugin> |
| 244 | + <plugin> |
| 245 | + <groupId>org.apache.maven.plugins</groupId> |
| 246 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 247 | + <version>${maven-javadoc-plugin.version}</version> |
| 248 | + <executions> |
| 249 | + <execution> |
| 250 | + <id>attach-javadocs</id> |
| 251 | + <goals> |
| 252 | + <goal>jar</goal> |
| 253 | + </goals> |
| 254 | + </execution> |
| 255 | + </executions> |
| 256 | + <configuration> |
| 257 | + <source>${maven.compiler.source}</source> |
| 258 | + </configuration> |
| 259 | + </plugin> |
| 260 | + <plugin> |
| 261 | + <groupId>org.apache.maven.plugins</groupId> |
| 262 | + <artifactId>maven-gpg-plugin</artifactId> |
| 263 | + <version>${maven-gpg-plugin.version}</version> |
| 264 | + <executions> |
| 265 | + <execution> |
| 266 | + <id>sign-artifacts</id> |
| 267 | + <phase>verify</phase> |
| 268 | + <goals> |
| 269 | + <goal>sign</goal> |
| 270 | + </goals> |
| 271 | + </execution> |
| 272 | + </executions> |
| 273 | + </plugin> |
| 274 | + <plugin> |
| 275 | + <groupId>org.sonatype.plugins</groupId> |
| 276 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 277 | + <version>${nexus-staging-maven-plugin.version}</version> |
| 278 | + <extensions>true</extensions> |
| 279 | + <configuration> |
| 280 | + <serverId>ossrh</serverId> |
| 281 | + <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
| 282 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 283 | + </configuration> |
| 284 | + </plugin> |
| 285 | + </plugins> |
| 286 | + </build> |
| 287 | + </profile> |
| 288 | + </profiles> |
277 | 289 | </project>
|
0 commit comments