|
1 | 1 | <?xml version='1.0' encoding='UTF-8'?> |
2 | 2 | <!-- |
3 | | - ~ Copyright 2018-2024, Andrew Lindesay |
| 3 | + ~ Copyright 2018-2025, Andrew Lindesay |
4 | 4 | ~ Distributed under the terms of the MIT License. |
5 | 5 | --> |
6 | 6 |
|
|
32 | 32 | <maven.compiler.source>21</maven.compiler.source> |
33 | 33 | <maven.compiler.parameters>true</maven.compiler.parameters> |
34 | 34 |
|
35 | | - <spring-boot.version>3.4.3</spring-boot.version> |
| 35 | + <spring-boot.version>3.5.0</spring-boot.version> |
36 | 36 | <spring-retry.version>2.0.11</spring-retry.version> |
37 | 37 |
|
38 | | - <postgresql.version>42.7.5</postgresql.version> |
39 | | - <cayenne.version>4.2.1</cayenne.version> |
| 38 | + <postgresql.version>42.7.7</postgresql.version> |
| 39 | + <cayenne.version>4.2.2</cayenne.version> |
40 | 40 |
|
41 | | - <slf4j.version>2.0.7</slf4j.version> |
42 | | - <jackson-databind.version>2.16.1</jackson-databind.version> |
| 41 | + <guava.version>33.4.8-jre</guava.version> |
43 | 42 |
|
44 | | - <guava.version>33.4.0-jre</guava.version> |
45 | | - |
46 | | - <openapi-generator-maven-plugin.version>7.11.0</openapi-generator-maven-plugin.version> |
| 43 | + <openapi-generator-maven-plugin.version>7.13.0</openapi-generator-maven-plugin.version> |
47 | 44 | <springfox.version>3.0.0</springfox.version> |
48 | 45 |
|
49 | | - <nimbus-jose-jwt.version>9.37.3</nimbus-jose-jwt.version> |
| 46 | + <nimbus-jose-jwt.version>9.48</nimbus-jose-jwt.version> |
50 | 47 |
|
51 | 48 | <maven-war-plugin.version>3.4.0</maven-war-plugin.version> |
52 | | - <maven-failsafe-plugin.version>3.2.3</maven-failsafe-plugin.version> |
| 49 | + <maven-failsafe-plugin.version>3.5.3</maven-failsafe-plugin.version> |
53 | 50 | <jsonschema2pojo-maven-plugin.version>1.2.2</jsonschema2pojo-maven-plugin.version> |
54 | 51 |
|
55 | 52 | <flexmark.version>0.64.8</flexmark.version> |
56 | 53 | <freemarker.version>2.3.34</freemarker.version> |
57 | | - <hikaricp.version>5.1.0</hikaricp.version> |
58 | | - <opencsv.version>5.9</opencsv.version> |
| 54 | + <opencsv.version>5.11</opencsv.version> |
59 | 55 | <aircompressor.version>2.0.2</aircompressor.version> |
60 | 56 |
|
61 | | - <commons-collections4.version>4.4</commons-collections4.version> |
| 57 | + <commons-collections4.version>4.5.0</commons-collections4.version> |
62 | 58 | <commons-lang3.version>3.17.0</commons-lang3.version> |
63 | 59 | <commons-compress.version>1.27.1</commons-compress.version> |
64 | | - <commons-codec.version>1.17.1</commons-codec.version> |
65 | | - <commons-csv.version>1.12.0</commons-csv.version> |
| 60 | + <commons-codec.version>1.18.0</commons-codec.version> |
| 61 | + <commons-csv.version>1.14.0</commons-csv.version> |
66 | 62 |
|
67 | | - <testcontainers.version>1.20.4</testcontainers.version> |
| 63 | + <testcontainers.version>1.21.1</testcontainers.version> |
68 | 64 | </properties> |
69 | 65 |
|
70 | 66 | <dependencyManagement> |
|
78 | 74 | <scope>import</scope> |
79 | 75 | </dependency> |
80 | 76 |
|
| 77 | + <dependency> |
| 78 | + <groupId>org.springframework.boot</groupId> |
| 79 | + <artifactId>spring-boot-starter-json</artifactId> |
| 80 | + <version>${spring-boot.version}</version> |
| 81 | + </dependency> |
| 82 | + |
| 83 | + <dependency> |
| 84 | + <groupId>org.springframework.boot</groupId> |
| 85 | + <artifactId>spring-boot-starter-jdbc</artifactId> |
| 86 | + <version>${spring-boot.version}</version> |
| 87 | + </dependency> |
| 88 | + |
81 | 89 | <dependency> |
82 | 90 | <groupId>org.springframework.retry</groupId> |
83 | 91 | <artifactId>spring-retry</artifactId> |
|
90 | 98 | <version>2.37</version> |
91 | 99 | </dependency> |
92 | 100 |
|
93 | | - <dependency> |
94 | | - <groupId>org.slf4j</groupId> |
95 | | - <artifactId>slf4j-api</artifactId> |
96 | | - <version>${slf4j.version}</version> |
97 | | - </dependency> |
98 | | - <dependency> |
99 | | - <groupId>org.slf4j</groupId> |
100 | | - <artifactId>jul-to-slf4j</artifactId> |
101 | | - <version>${slf4j.version}</version> |
102 | | - </dependency> |
103 | | - <dependency> |
104 | | - <groupId>org.slf4j</groupId> |
105 | | - <artifactId>jcl-over-slf4j</artifactId> |
106 | | - <version>${slf4j.version}</version> |
107 | | - </dependency> |
108 | | - <dependency> |
109 | | - <groupId>org.slf4j</groupId> |
110 | | - <artifactId>log4j-over-slf4j</artifactId> |
111 | | - <version>${slf4j.version}</version> |
112 | | - </dependency> |
113 | | - |
114 | | - <dependency> |
115 | | - <groupId>com.fasterxml.jackson.core</groupId> |
116 | | - <artifactId>jackson-databind</artifactId> |
117 | | - <version>${jackson-databind.version}</version> |
118 | | - </dependency> |
119 | 101 | <dependency> |
120 | 102 | <groupId>com.google.guava</groupId> |
121 | 103 | <artifactId>guava</artifactId> |
|
230 | 212 | <version>${cayenne.version}</version> |
231 | 213 | </dependency> |
232 | 214 |
|
233 | | - <dependency> |
234 | | - <groupId>com.zaxxer</groupId> |
235 | | - <artifactId>HikariCP</artifactId> |
236 | | - <version>${hikaricp.version}</version> |
237 | | - </dependency> |
238 | | - |
239 | 215 | <dependency> |
240 | 216 | <groupId>ar.com.hjg</groupId> |
241 | 217 | <artifactId>pngj</artifactId> |
242 | 218 | <version>2.1.0</version> |
243 | 219 | </dependency> |
244 | 220 |
|
245 | | - <dependency> |
246 | | - <groupId>org.springframework.boot</groupId> |
247 | | - <artifactId>spring-boot-dependencies</artifactId> |
248 | | - <version>${spring-boot.version}</version> |
249 | | - <type>pom</type> |
250 | | - <scope>import</scope> |
251 | | - </dependency> |
| 221 | + |
252 | 222 |
|
253 | 223 | <dependency> |
254 | 224 | <groupId>org.springframework.boot</groupId> |
|
259 | 229 | <dependency> |
260 | 230 | <groupId>org.junit.jupiter</groupId> |
261 | 231 | <artifactId>junit-jupiter</artifactId> |
262 | | - <version>5.10.1</version> |
| 232 | + <version>5.13.0</version> |
263 | 233 | </dependency> |
264 | 234 | <dependency> |
265 | 235 | <groupId>org.easytesting</groupId> |
|
298 | 268 | <dependency> |
299 | 269 | <groupId>org.awaitility</groupId> |
300 | 270 | <artifactId>awaitility</artifactId> |
301 | | - <version>4.2.0</version> |
| 271 | + <version>4.3.0</version> |
302 | 272 | <scope>test</scope> |
303 | 273 | </dependency> |
304 | 274 |
|
|
0 commit comments