|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
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 http://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" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 4 | <modelVersion>4.0.0</modelVersion> |
4 | 5 |
|
5 | 6 | <parent> |
6 | 7 | <groupId>org.springframework.boot</groupId> |
7 | 8 | <artifactId>spring-boot-starter-parent</artifactId> |
8 | | - <version>3.5.7</version> |
| 9 | + <version>4.0.0</version> |
9 | 10 | <relativePath/> <!-- lookup parent from repository --> |
10 | 11 | </parent> |
11 | 12 |
|
|
52 | 53 | <dependency> |
53 | 54 | <groupId>io.github.classgraph</groupId> |
54 | 55 | <artifactId>classgraph</artifactId> |
55 | | - <version>4.8.181</version> |
| 56 | + <version>4.8.184</version> |
56 | 57 | </dependency> |
57 | 58 |
|
58 | 59 |
|
|
61 | 62 | <dependency> |
62 | 63 | <groupId>commons-validator</groupId> |
63 | 64 | <artifactId>commons-validator</artifactId> |
64 | | - <version>1.10.0</version> |
| 65 | + <version>1.10.1</version> |
65 | 66 | <exclusions> |
66 | 67 | <exclusion> |
67 | 68 | <groupId>commons-collections</groupId> |
|
78 | 79 | <dependency> |
79 | 80 | <groupId>org.springdoc</groupId> |
80 | 81 | <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> |
81 | | - <version>2.8.14</version> |
| 82 | + <version>3.0.0</version> |
82 | 83 | </dependency> |
83 | 84 |
|
84 | 85 | <!-- Testing --> |
|
98 | 99 | <artifactId>spring-boot-starter-web</artifactId> |
99 | 100 | <scope>test</scope> |
100 | 101 | </dependency> |
101 | | - |
102 | | - <!-- Database --> |
103 | 102 | <dependency> |
104 | | - <groupId>org.liquibase</groupId> |
105 | | - <artifactId>liquibase-core</artifactId> |
| 103 | + <groupId>org.springframework.boot</groupId> |
| 104 | + <artifactId>spring-boot-webmvc-test</artifactId> |
| 105 | + <scope>test</scope> |
| 106 | + </dependency> |
| 107 | + <dependency> |
| 108 | + <groupId>org.springframework.boot</groupId> |
| 109 | + <artifactId>spring-boot-starter-liquibase</artifactId> |
106 | 110 | <scope>test</scope> |
107 | 111 | </dependency> |
| 112 | + |
| 113 | + <!-- Database --> |
108 | 114 | <dependency> |
109 | 115 | <groupId>org.postgresql</groupId> |
110 | 116 | <artifactId>postgresql</artifactId> |
|
117 | 123 | <artifactId>testcontainers</artifactId> |
118 | 124 | <version>2.0.2</version> |
119 | 125 | <scope>test</scope> |
120 | | - <exclusions> |
121 | | - <exclusion> |
122 | | - <groupId>org.hamcrest</groupId> |
123 | | - <artifactId>hamcrest-core</artifactId> |
124 | | - </exclusion> |
125 | | - <exclusion> |
126 | | - <groupId>org.hamcrest</groupId> |
127 | | - <artifactId>hamcrest-library</artifactId> |
128 | | - </exclusion> |
129 | | - <exclusion> |
130 | | - <!-- see: https://github.com/testcontainers/testcontainers-java/issues/970#issuecomment-625044008 --> |
131 | | - <!-- can be removed once testcontainers drop their dependency to junit4 --> |
132 | | - <groupId>junit</groupId> |
133 | | - <artifactId>junit</artifactId> |
134 | | - </exclusion> |
135 | | - </exclusions> |
136 | 126 | </dependency> |
137 | 127 | <dependency> |
138 | 128 | <groupId>org.testcontainers</groupId> |
|
195 | 185 | <dependency> |
196 | 186 | <groupId>com.puppycrawl.tools</groupId> |
197 | 187 | <artifactId>checkstyle</artifactId> |
198 | | - <version>11.1.0</version> |
| 188 | + <version>12.3.0</version> |
199 | 189 | </dependency> |
200 | 190 | <dependency> |
201 | 191 | <groupId>it.aboutbits</groupId> |
202 | 192 | <artifactId>java-checkstyle-config</artifactId> |
203 | | - <version>1.0.1</version> |
| 193 | + <version>1.1.0</version> |
204 | 194 | </dependency> |
205 | 195 | </dependencies> |
206 | 196 | </plugin> |
|
0 commit comments