|
11 | 11 | <properties> |
12 | 12 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
13 | 13 |
|
14 | | - <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version> |
15 | | - <maven-shade-plugin.version>3.2.4</maven-shade-plugin.version> |
16 | | - <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version> |
| 14 | + <maven-compiler-plugin.version>3.12.1</maven-compiler-plugin.version> |
| 15 | + <maven-dependency-plugin.version>3.11.0</maven-dependency-plugin.version> |
| 16 | + <maven-surefire-plugin.version>3.5.6</maven-surefire-plugin.version> |
17 | 17 | <exec-maven-plugin.version>3.0.0</exec-maven-plugin.version> |
18 | 18 |
|
19 | 19 | <vertx.version>4.5.21</vertx.version> |
|
94 | 94 | <dependency> |
95 | 95 | <groupId>io.vertx</groupId> |
96 | 96 | <artifactId>vertx-config</artifactId> |
97 | | - <version>${vertx.version}</version> |
98 | 97 | </dependency> |
99 | 98 | <dependency> |
100 | 99 | <groupId>io.vertx</groupId> |
101 | 100 | <artifactId>vertx-web</artifactId> |
102 | | - <version>${vertx.version}</version> |
103 | 101 | </dependency> |
104 | 102 | <dependency> |
105 | 103 | <groupId>io.vertx</groupId> |
106 | 104 | <artifactId>vertx-web-client</artifactId> |
107 | | - <version>${vertx.version}</version> |
108 | 105 | </dependency> |
109 | 106 | <dependency> |
110 | 107 | <groupId>io.vertx</groupId> |
111 | 108 | <artifactId>vertx-micrometer-metrics</artifactId> |
112 | | - <version>${vertx.version}</version> |
113 | | - </dependency> |
114 | | - <dependency> |
115 | | - <groupId>co.nstant.in</groupId> |
116 | | - <artifactId>cbor</artifactId> |
117 | | - <version>0.9</version> |
118 | 109 | </dependency> |
119 | 110 | <dependency> |
120 | 111 | <groupId>software.amazon.awssdk</groupId> |
|
144 | 135 | <groupId>software.amazon.awssdk</groupId> |
145 | 136 | <artifactId>secretsmanager</artifactId> |
146 | 137 | </dependency> |
147 | | - <dependency> |
148 | | - <groupId>software.amazon.awssdk</groupId> |
149 | | - <artifactId>kms</artifactId> |
150 | | - </dependency> |
151 | 138 | <dependency> |
152 | 139 | <groupId>software.amazon.awssdk</groupId> |
153 | 140 | <artifactId>sts</artifactId> |
|
172 | 159 | <dependency> |
173 | 160 | <groupId>org.mockito</groupId> |
174 | 161 | <artifactId>mockito-core</artifactId> |
175 | | - <version>5.12.0</version> |
| 162 | + <version>5.23.0</version> |
176 | 163 | <scope>test</scope> |
177 | 164 | </dependency> |
178 | | - <dependency> |
179 | | - <groupId>org.mockito</groupId> |
180 | | - <artifactId>mockito-inline</artifactId> |
181 | | - <version>5.2.0</version> |
182 | | - <scope>test</scope> |
183 | | - </dependency> |
184 | | - <dependency> |
185 | | - <groupId>net.bytebuddy</groupId> |
186 | | - <artifactId>byte-buddy</artifactId> |
187 | | - <version>1.14.17</version> |
188 | | - </dependency> |
189 | 165 | </dependencies> |
190 | 166 |
|
191 | 167 | <build> |
|
205 | 181 | <plugin> |
206 | 182 | <groupId>org.apache.maven.plugins</groupId> |
207 | 183 | <artifactId>maven-compiler-plugin</artifactId> |
208 | | - <version>3.12.1</version> |
| 184 | + <version>${maven-compiler-plugin.version}</version> |
209 | 185 | <configuration> |
210 | | - <source>21</source> |
211 | | - <target>21</target> |
| 186 | + <release>21</release> |
212 | 187 | </configuration> |
213 | 188 | </plugin> |
214 | 189 | <plugin> |
|
307 | 282 | <groupId>org.apache.maven.plugins</groupId> |
308 | 283 | <artifactId>maven-surefire-plugin</artifactId> |
309 | 284 | <version>${maven-surefire-plugin.version}</version> |
| 285 | + <configuration> |
| 286 | + <argLine>@{argLine} -javaagent:${org.mockito:mockito-core:jar}</argLine> |
| 287 | + </configuration> |
| 288 | + </plugin> |
| 289 | + <plugin> |
| 290 | + <groupId>org.apache.maven.plugins</groupId> |
| 291 | + <artifactId>maven-dependency-plugin</artifactId> |
| 292 | + <version>${maven-dependency-plugin.version}</version> |
| 293 | + <executions> |
| 294 | + <execution> |
| 295 | + <goals> |
| 296 | + <goal>properties</goal> |
| 297 | + </goals> |
| 298 | + </execution> |
| 299 | + </executions> |
310 | 300 | </plugin> |
311 | 301 | </plugins> |
312 | 302 | </build> |
|
0 commit comments