|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 |
| -<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 |
| - xmlns="http://maven.apache.org/POM/4.0.0" |
4 |
| - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 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/xsd/maven-4.0.0.xsd"> |
5 | 3 | <modelVersion>4.0.0</modelVersion>
|
6 |
| - <groupId>org.springframework.samples</groupId> |
7 |
| - <artifactId>spring-petclinic</artifactId> |
8 |
| - <version>3.3.0-SNAPSHOT</version> |
9 | 4 |
|
10 | 5 | <parent>
|
11 | 6 | <groupId>org.springframework.boot</groupId>
|
12 | 7 | <artifactId>spring-boot-starter-parent</artifactId>
|
13 |
| - <version>3.3.4</version> |
14 |
| - <relativePath/> |
| 8 | + <version>3.3.5</version> |
| 9 | + <relativePath></relativePath> |
15 | 10 | </parent>
|
| 11 | + |
| 12 | + <groupId>org.springframework.samples</groupId> |
| 13 | + <artifactId>spring-petclinic</artifactId> |
| 14 | + <version>3.3.0-SNAPSHOT</version> |
| 15 | + |
16 | 16 | <name>petclinic</name>
|
17 | 17 |
|
18 | 18 | <properties>
|
|
28 | 28 | <webjars-bootstrap.version>5.3.3</webjars-bootstrap.version>
|
29 | 29 | <webjars-font-awesome.version>4.7.0</webjars-font-awesome.version>
|
30 | 30 |
|
31 |
| - <checkstyle.version>10.18.1</checkstyle.version> |
| 31 | + <checkstyle.version>10.20.0</checkstyle.version> |
32 | 32 | <jacoco.version>0.8.12</jacoco.version>
|
33 | 33 | <libsass.version>0.2.29</libsass.version>
|
34 | 34 | <lifecycle-mapping>1.0.0</lifecycle-mapping>
|
35 |
| - <maven-checkstyle.version>3.5.0</maven-checkstyle.version> |
| 35 | + <maven-checkstyle.version>3.6.0</maven-checkstyle.version> |
36 | 36 | <nohttp-checkstyle.version>0.0.11</nohttp-checkstyle.version>
|
37 | 37 | <spring-format.version>0.0.43</spring-format.version>
|
38 | 38 |
|
|
171 | 171 | <version>${spring-format.version}</version>
|
172 | 172 | <executions>
|
173 | 173 | <execution>
|
174 |
| - <phase>validate</phase> |
175 | 174 | <goals>
|
176 | 175 | <goal>validate</goal>
|
177 | 176 | </goals>
|
| 177 | + <phase>validate</phase> |
178 | 178 | </execution>
|
179 | 179 | </executions>
|
180 | 180 | </plugin>
|
|
197 | 197 | <executions>
|
198 | 198 | <execution>
|
199 | 199 | <id>nohttp-checkstyle-validation</id>
|
| 200 | + <goals> |
| 201 | + <goal>check</goal> |
| 202 | + </goals> |
200 | 203 | <phase>validate</phase>
|
201 | 204 | <configuration>
|
202 | 205 | <configLocation>src/checkstyle/nohttp-checkstyle.xml</configLocation>
|
203 | 206 | <sourceDirectories>${basedir}</sourceDirectories>
|
204 | 207 | <includes>**/*</includes>
|
205 | 208 | <excludes>**/.git/**/*,**/.idea/**/*,**/target/**/,**/.flattened-pom.xml,**/*.class</excludes>
|
206 |
| - <propertyExpansion> |
207 |
| - config_loc=${basedir}/src/checkstyle/ |
208 |
| - </propertyExpansion> |
| 209 | + <propertyExpansion>config_loc=${basedir}/src/checkstyle/</propertyExpansion> |
209 | 210 | </configuration>
|
210 |
| - <goals> |
211 |
| - <goal>check</goal> |
212 |
| - </goals> |
213 | 211 | </execution>
|
214 | 212 | </executions>
|
215 | 213 | </plugin>
|
|
250 | 248 | </execution>
|
251 | 249 | <execution>
|
252 | 250 | <id>report</id>
|
253 |
| - <phase>prepare-package</phase> |
254 | 251 | <goals>
|
255 | 252 | <goal>report</goal>
|
256 | 253 | </goals>
|
| 254 | + <phase>prepare-package</phase> |
257 | 255 | </execution>
|
258 | 256 | </executions>
|
259 | 257 | </plugin>
|
|
271 | 269 | <!-- Spring Boot Actuator displays sbom-related information if a CycloneDX SBOM file is
|
272 | 270 | present at the classpath -->
|
273 | 271 | <plugin>
|
274 |
| - <?m2e ignore?> |
| 272 | + <?m2e ignore?> |
275 | 273 | <groupId>org.cyclonedx</groupId>
|
276 | 274 | <artifactId>cyclonedx-maven-plugin</artifactId>
|
277 | 275 | </plugin>
|
278 | 276 |
|
279 | 277 | </plugins>
|
280 | 278 | </build>
|
281 |
| - |
282 | 279 | <licenses>
|
283 | 280 | <license>
|
284 | 281 | <name>Apache License, Version 2.0</name>
|
|
288 | 285 |
|
289 | 286 | <repositories>
|
290 | 287 | <repository>
|
291 |
| - <id>spring-snapshots</id> |
292 |
| - <name>Spring Snapshots</name> |
293 |
| - <url>https://repo.spring.io/snapshot</url> |
294 | 288 | <snapshots>
|
295 | 289 | <enabled>true</enabled>
|
296 | 290 | </snapshots>
|
| 291 | + <id>spring-snapshots</id> |
| 292 | + <name>Spring Snapshots</name> |
| 293 | + <url>https://repo.spring.io/snapshot</url> |
297 | 294 | </repository>
|
298 | 295 | <repository>
|
299 |
| - <id>spring-milestones</id> |
300 |
| - <name>Spring Milestones</name> |
301 |
| - <url>https://repo.spring.io/milestone</url> |
302 | 296 | <snapshots>
|
303 | 297 | <enabled>false</enabled>
|
304 | 298 | </snapshots>
|
| 299 | + <id>spring-milestones</id> |
| 300 | + <name>Spring Milestones</name> |
| 301 | + <url>https://repo.spring.io/milestone</url> |
305 | 302 | </repository>
|
306 | 303 | </repositories>
|
307 |
| - |
308 | 304 | <pluginRepositories>
|
309 | 305 | <pluginRepository>
|
310 |
| - <id>spring-snapshots</id> |
311 |
| - <name>Spring Snapshots</name> |
312 |
| - <url>https://repo.spring.io/snapshot</url> |
313 | 306 | <snapshots>
|
314 | 307 | <enabled>true</enabled>
|
315 | 308 | </snapshots>
|
| 309 | + <id>spring-snapshots</id> |
| 310 | + <name>Spring Snapshots</name> |
| 311 | + <url>https://repo.spring.io/snapshot</url> |
316 | 312 | </pluginRepository>
|
317 | 313 | <pluginRepository>
|
318 |
| - <id>spring-milestones</id> |
319 |
| - <name>Spring Milestones</name> |
320 |
| - <url>https://repo.spring.io/milestone</url> |
321 | 314 | <snapshots>
|
322 | 315 | <enabled>false</enabled>
|
323 | 316 | </snapshots>
|
| 317 | + <id>spring-milestones</id> |
| 318 | + <name>Spring Milestones</name> |
| 319 | + <url>https://repo.spring.io/milestone</url> |
324 | 320 | </pluginRepository>
|
325 | 321 | </pluginRepositories>
|
326 | 322 |
|
|
335 | 331 | <executions>
|
336 | 332 | <execution>
|
337 | 333 | <id>unpack</id>
|
338 |
| - <?m2e execute onConfiguration,onIncremental?> |
339 |
| - <phase>generate-resources</phase> |
340 | 334 | <goals>
|
341 | 335 | <goal>unpack</goal>
|
342 | 336 | </goals>
|
| 337 | + <?m2e execute onConfiguration,onIncremental?> |
| 338 | + <phase>generate-resources</phase> |
343 | 339 | <configuration>
|
344 | 340 | <artifactItems>
|
345 | 341 | <artifactItem>
|
|
358 | 354 | <groupId>com.gitlab.haynes</groupId>
|
359 | 355 | <artifactId>libsass-maven-plugin</artifactId>
|
360 | 356 | <version>${libsass.version}</version>
|
| 357 | + <configuration> |
| 358 | + <inputPath>${basedir}/src/main/scss/</inputPath> |
| 359 | + <outputPath>${basedir}/src/main/resources/static/resources/css/</outputPath> |
| 360 | + <includePath>${project.build.directory}/webjars/META-INF/resources/webjars/bootstrap/${webjars-bootstrap.version}/scss/</includePath> |
| 361 | + </configuration> |
361 | 362 | <executions>
|
362 | 363 | <execution>
|
363 |
| - <phase>generate-resources</phase> |
364 | 364 | <?m2e execute onConfiguration,onIncremental?>
|
365 | 365 | <goals>
|
366 | 366 | <goal>compile</goal>
|
367 | 367 | </goals>
|
| 368 | + <phase>generate-resources</phase> |
368 | 369 | </execution>
|
369 | 370 | </executions>
|
370 |
| - <configuration> |
371 |
| - <inputPath>${basedir}/src/main/scss/</inputPath> |
372 |
| - <outputPath>${basedir}/src/main/resources/static/resources/css/</outputPath> |
373 |
| - <includePath> |
374 |
| - ${project.build.directory}/webjars/META-INF/resources/webjars/bootstrap/${webjars-bootstrap.version}/scss/</includePath> |
375 |
| - </configuration> |
376 | 371 | </plugin>
|
377 | 372 | </plugins>
|
378 | 373 | </build>
|
|
406 | 401 | </goals>
|
407 | 402 | </pluginExecutionFilter>
|
408 | 403 | <action>
|
409 |
| - <ignore /> |
| 404 | + <ignore></ignore> |
410 | 405 | </action>
|
411 | 406 | </pluginExecution>
|
412 | 407 | <pluginExecution>
|
|
419 | 414 | </goals>
|
420 | 415 | </pluginExecutionFilter>
|
421 | 416 | <action>
|
422 |
| - <ignore /> |
| 417 | + <ignore></ignore> |
423 | 418 | </action>
|
424 | 419 | </pluginExecution>
|
425 | 420 | <pluginExecution>
|
|
432 | 427 | </goals>
|
433 | 428 | </pluginExecutionFilter>
|
434 | 429 | <action>
|
435 |
| - <ignore /> |
| 430 | + <ignore></ignore> |
436 | 431 | </action>
|
437 | 432 | </pluginExecution>
|
438 | 433 | </pluginExecutions>
|
|
444 | 439 | </build>
|
445 | 440 | </profile>
|
446 | 441 | </profiles>
|
447 |
| - |
448 | 442 | </project>
|
0 commit comments