|
72 | 72 |
|
73 | 73 | <clirr.comparisonVersion>3.4.6</clirr.comparisonVersion>
|
74 | 74 |
|
75 |
| - <byte-buddy.version>1.15.11</byte-buddy.version> |
| 75 | + <byte-buddy.version>1.16.1</byte-buddy.version> |
76 | 76 | <derby.version>10.17.1.0</derby.version>
|
77 | 77 | <log4j.version>2.24.3</log4j.version>
|
78 | 78 | <mockito.version>5.15.2</mockito.version>
|
79 | 79 | <mssql-jdbc.version>12.8.1.jre11</mssql-jdbc.version>
|
80 | 80 | <testcontainers.version>1.20.4</testcontainers.version>
|
| 81 | + <git-build-hook.version>3.5.0</git-build-hook.version> |
81 | 82 |
|
82 | 83 | <!-- Add slow test groups here and annotate classes similar to @Tag('groupName'). -->
|
83 | 84 | <!-- Excluded groups are ran on github ci, to force here, pass -d"excludedGroups=" -->
|
|
195 | 196 | <dependency>
|
196 | 197 | <groupId>org.postgresql</groupId>
|
197 | 198 | <artifactId>postgresql</artifactId>
|
198 |
| - <version>42.7.4</version> |
| 199 | + <version>42.7.5</version> |
199 | 200 | <scope>test</scope>
|
200 | 201 | </dependency>
|
201 | 202 | <dependency>
|
202 | 203 | <groupId>com.mysql</groupId>
|
203 | 204 | <artifactId>mysql-connector-j</artifactId>
|
204 |
| - <version>9.1.0</version> |
| 205 | + <version>9.2.0</version> |
205 | 206 | <scope>test</scope>
|
206 | 207 | </dependency>
|
207 | 208 | <dependency>
|
|
213 | 214 | <dependency>
|
214 | 215 | <groupId>org.assertj</groupId>
|
215 | 216 | <artifactId>assertj-core</artifactId>
|
216 |
| - <version>3.27.2</version> |
| 217 | + <version>3.27.3</version> |
217 | 218 | <scope>test</scope>
|
218 | 219 | </dependency>
|
219 | 220 | <dependency>
|
|
431 | 432 | </rules>
|
432 | 433 | </configuration>
|
433 | 434 | </plugin>
|
| 435 | + |
| 436 | + <plugin> |
| 437 | + <groupId>com.rudikershaw.gitbuildhook</groupId> |
| 438 | + <artifactId>git-build-hook-maven-plugin</artifactId> |
| 439 | + <version>${git-build-hook.version}</version> |
| 440 | + <configuration> |
| 441 | + <installHooks> |
| 442 | + <pre-commit>hooks/pre-commit.sh</pre-commit> |
| 443 | + </installHooks> |
| 444 | + </configuration> |
| 445 | + <executions> |
| 446 | + <execution> |
| 447 | + <goals> |
| 448 | + <goal>install</goal> |
| 449 | + </goals> |
| 450 | + </execution> |
| 451 | + </executions> |
| 452 | + </plugin> |
434 | 453 | </plugins>
|
435 | 454 | </build>
|
436 | 455 |
|
|
0 commit comments