|
5 | 5 | <parent> |
6 | 6 | <groupId>org.springframework.boot</groupId> |
7 | 7 | <artifactId>spring-boot-starter-parent</artifactId> |
8 | | - <version>3.4.2</version> |
| 8 | + <version>3.5.0</version> |
9 | 9 | <relativePath></relativePath> |
10 | 10 | </parent> |
11 | 11 |
|
12 | 12 | <groupId>org.springframework.samples</groupId> |
13 | 13 | <artifactId>spring-petclinic-ai</artifactId> |
14 | | - <version>3.4.2-SNAPSHOT</version> |
| 14 | + <version>3.5.0-SNAPSHOT</version> |
15 | 15 |
|
16 | 16 | <name>petclinic</name> |
17 | 17 |
|
|
21 | 21 | <java.version>17</java.version> |
22 | 22 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
23 | 23 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
24 | | - <!-- Important for reproducible builds. Update using e.g. ./mvnw versions:set |
25 | | - -DnewVersion=... --> |
| 24 | + <!-- Important for reproducible builds. Update using e.g. ./mvnw versions:set -DnewVersion=... --> |
26 | 25 | <project.build.outputTimestamp>2024-11-28T14:37:52Z</project.build.outputTimestamp> |
27 | 26 |
|
28 | 27 | <!-- Web dependencies --> |
29 | | - <webjars-locator.version>1.0.1</webjars-locator.version> |
30 | | - <webjars-bootstrap.version>5.3.3</webjars-bootstrap.version> |
| 28 | + <webjars-locator.version>1.1.0</webjars-locator.version> |
| 29 | + <webjars-bootstrap.version>5.3.6</webjars-bootstrap.version> |
31 | 30 | <webjars-font-awesome.version>4.7.0</webjars-font-awesome.version> |
32 | 31 | <webjars-marked.version>14.1.2</webjars-marked.version> |
33 | 32 |
|
34 | | - <checkstyle.version>10.20.1</checkstyle.version> |
35 | | - <jacoco.version>0.8.12</jacoco.version> |
36 | | - <libsass.version>0.2.29</libsass.version> |
| 33 | + <checkstyle.version>10.25.0</checkstyle.version> |
| 34 | + <jacoco.version>0.8.13</jacoco.version> |
| 35 | + <libsass.version>0.3.4</libsass.version> |
37 | 36 | <lifecycle-mapping>1.0.0</lifecycle-mapping> |
38 | 37 | <maven-checkstyle.version>3.6.0</maven-checkstyle.version> |
39 | 38 | <nohttp-checkstyle.version>0.0.11</nohttp-checkstyle.version> |
40 | | - <spring-format.version>0.0.43</spring-format.version> |
| 39 | + <spring-format.version>0.0.46</spring-format.version> |
41 | 40 | <spring-ai.version>1.0.0-M8</spring-ai.version> |
| 41 | + |
42 | 42 | </properties> |
43 | 43 |
|
44 | 44 | <dependencies> |
|
81 | 81 | <artifactId>spring-boot-starter-test</artifactId> |
82 | 82 | <scope>test</scope> |
83 | 83 | </dependency> |
84 | | - <dependency> |
85 | | - <!-- Workaround for AOT issue (https://github.com/spring-projects/spring-framework/pull/33949) --> |
86 | | - <groupId>io.projectreactor</groupId> |
87 | | - <artifactId>reactor-core</artifactId> |
88 | | - </dependency> |
89 | 84 |
|
90 | 85 | <!-- Databases - Uses H2 by default --> |
91 | 86 | <dependency> |
|
195 | 190 | <configuration> |
196 | 191 | <rules> |
197 | 192 | <requireJavaVersion> |
198 | | - <message>This build requires at least Java ${java.version}, |
199 | | - update your JVM, and |
200 | | - run the build again</message> |
| 193 | + <message>This build requires at least Java ${java.version}, update your JVM, and run the build again</message> |
201 | 194 | <version>${java.version}</version> |
202 | 195 | </requireJavaVersion> |
203 | 196 | </rules> |
|
0 commit comments