|
37 | 37 | <url>${project.url}</url> |
38 | 38 | <tag>HEAD</tag> |
39 | 39 | </scm> |
40 | | - |
| 40 | + |
| 41 | + <repositories> |
| 42 | + <repository> |
| 43 | + <id>spring-milestone</id> |
| 44 | + <url>https://repo.spring.io/milestone</url> |
| 45 | + <releases> |
| 46 | + <enabled>true</enabled> |
| 47 | + </releases> |
| 48 | + </repository> |
| 49 | + </repositories> |
| 50 | + |
41 | 51 | <issueManagement> |
42 | 52 | <system>GitHub Issues</system> |
43 | 53 | <url>https://github.com/marschall/hibernate-batch-sequence-generator/issues</url> |
|
94 | 104 | <configuration> |
95 | 105 | <links> |
96 | 106 | <link>https://docs.oracle.com/javase/11/docs/api/</link> |
97 | | - <link>https://docs.jboss.org/hibernate/orm/6.0/javadocs/</link> |
| 107 | + <link>https://docs.jboss.org/hibernate/orm/6.1/javadocs/</link> |
98 | 108 | </links> |
99 | 109 | </configuration> |
100 | 110 | </plugin> |
|
202 | 212 | <dependency> |
203 | 213 | <groupId>org.junit</groupId> |
204 | 214 | <artifactId>junit-bom</artifactId> |
205 | | - <version>5.8.2</version> |
| 215 | + <version>5.9.1</version> |
206 | 216 | <type>pom</type> |
207 | 217 | <scope>import</scope> |
208 | 218 | </dependency> |
209 | 219 | <dependency> |
210 | 220 | <groupId>org.springframework</groupId> |
211 | 221 | <artifactId>spring-framework-bom</artifactId> |
212 | | - <version>5.3.19</version> |
| 222 | + <version>6.0.0-M6</version> |
213 | 223 | <type>pom</type> |
214 | 224 | <scope>import</scope> |
215 | 225 | </dependency> |
216 | 226 | <dependency> |
217 | 227 | <groupId>com.oracle.database.jdbc</groupId> |
218 | 228 | <artifactId>ojdbc-bom</artifactId> |
219 | | - <version>21.5.0.0</version> |
| 229 | + <version>21.7.0.0</version> |
220 | 230 | <type>pom</type> |
221 | 231 | <scope>import</scope> |
222 | 232 | </dependency> |
223 | 233 | <dependency> |
224 | 234 | <groupId>org.apache.logging.log4j</groupId> |
225 | 235 | <artifactId>log4j-bom</artifactId> |
226 | | - <version>2.17.2</version> |
| 236 | + <version>2.19.0</version> |
227 | 237 | <type>pom</type> |
228 | 238 | <scope>import</scope> |
229 | 239 | </dependency> |
|
262 | 272 | <dependency> |
263 | 273 | <groupId>net.ttddyy</groupId> |
264 | 274 | <artifactId>datasource-proxy</artifactId> |
265 | | - <version>1.7</version> |
| 275 | + <version>1.8</version> |
266 | 276 | <scope>test</scope> |
267 | 277 | </dependency> |
268 | 278 | <!-- database drivers --> |
269 | 279 | <dependency> |
270 | 280 | <groupId>org.hsqldb</groupId> |
271 | 281 | <artifactId>hsqldb</artifactId> |
272 | | - <version>2.6.1</version> |
| 282 | + <version>2.7.0</version> |
273 | 283 | <scope>test</scope> |
274 | 284 | </dependency> |
275 | 285 | <dependency> |
276 | 286 | <groupId>org.postgresql</groupId> |
277 | 287 | <artifactId>postgresql</artifactId> |
278 | | - <version>42.3.3</version> |
| 288 | + <version>42.5.0</version> |
279 | 289 | <scope>test</scope> |
280 | 290 | </dependency> |
281 | 291 | <dependency> |
282 | 292 | <groupId>com.h2database</groupId> |
283 | 293 | <artifactId>h2</artifactId> |
284 | | - <version>2.1.212</version> |
| 294 | + <version>2.1.214</version> |
285 | 295 | <scope>test</scope> |
286 | 296 | </dependency> |
287 | 297 | <dependency> |
288 | 298 | <groupId>com.microsoft.sqlserver</groupId> |
289 | 299 | <artifactId>mssql-jdbc</artifactId> |
290 | | - <version>10.2.0.jre11</version> |
| 300 | + <version>11.2.1.jre11</version> |
291 | 301 | <scope>test</scope> |
292 | 302 | </dependency> |
293 | 303 | <dependency> |
294 | 304 | <groupId>org.firebirdsql.jdbc</groupId> |
295 | 305 | <artifactId>jaybird</artifactId> |
296 | | - <version>4.0.5.java11</version> |
| 306 | + <version>4.0.6.java11</version> |
297 | 307 | <scope>test</scope> |
298 | 308 | </dependency> |
299 | 309 | <dependency> |
300 | 310 | <groupId>org.mariadb.jdbc</groupId> |
301 | 311 | <artifactId>mariadb-java-client</artifactId> |
302 | | - <version>3.0.4</version> |
| 312 | + <version>3.0.8</version> |
303 | 313 | <scope>test</scope> |
304 | 314 | </dependency> |
305 | 315 | <dependency> |
|
394 | 404 | <properties> |
395 | 405 | <project.reporting.outputEncoding>utf-8</project.reporting.outputEncoding> |
396 | 406 | <project.build.sourceEncoding>utf-8</project.build.sourceEncoding> |
397 | | - <hibernate.version>6.0.0.Final</hibernate.version> |
| 407 | + <hibernate.version>6.1.4.Final</hibernate.version> |
398 | 408 | </properties> |
399 | 409 |
|
400 | 410 | </project> |
0 commit comments