|
14 | 14 |
|
15 | 15 | <properties> |
16 | 16 | <okhttp2-version>2.7.5</okhttp2-version> |
17 | | - <okhttp3-version>4.8.1</okhttp3-version> |
18 | | - <google-api-client-version>1.23.0</google-api-client-version> |
| 17 | + <okhttp3-version>4.12.0</okhttp3-version> |
| 18 | + <google-api-client-version>2.3.0</google-api-client-version> |
19 | 19 | <feign-version>9.7.0</feign-version> |
20 | 20 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
21 | 21 | <gpg.signature.skip>false</gpg.signature.skip> |
|
107 | 107 | <dependency> |
108 | 108 | <groupId>org.mockito</groupId> |
109 | 109 | <artifactId>mockito-core</artifactId> |
110 | | - <version>3.5.5</version> |
| 110 | + <version>5.10.0</version> |
111 | 111 | <scope>test</scope> |
112 | 112 | </dependency> |
113 | 113 |
|
|
135 | 135 | <dependency> |
136 | 136 | <groupId>net.minidev</groupId> |
137 | 137 | <artifactId>json-smart</artifactId> |
138 | | - <version>2.4.9</version> |
| 138 | + <version>2.5.0</version> |
139 | 139 | <scope>test</scope> |
140 | 140 | </dependency> |
141 | 141 |
|
|
163 | 163 |
|
164 | 164 | <profiles> |
165 | 165 | <profile> |
166 | | - <id>java11+</id> |
| 166 | + <id>java11</id> |
167 | 167 | <activation> |
168 | | - <jdk>[11,)</jdk> |
| 168 | + <jdk>11</jdk> |
| 169 | + </activation> |
| 170 | + <properties> |
| 171 | + <!-- The Javadoc generation started to fail with OpenJDK 11.0.2 (11.0.1 was OK) and OpenJDK 12-ea: |
| 172 | + "The code being documented uses modules but the packages defined in |
| 173 | + https://docs.oracle.com/javase/7/docs/api/ are in the unnamed module." |
| 174 | + See: https://bugs.openjdk.java.net/browse/JDK-8212233 |
| 175 | + --> |
| 176 | + <maven.javadoc.skip>true</maven.javadoc.skip> |
| 177 | + </properties> |
| 178 | + </profile> |
| 179 | + <profile> |
| 180 | + <id>java17</id> |
| 181 | + <activation> |
| 182 | + <jdk>17</jdk> |
169 | 183 | </activation> |
170 | 184 | <properties> |
171 | 185 | <!-- The Javadoc generation started to fail with OpenJDK 11.0.2 (11.0.1 was OK) and OpenJDK 12-ea: |
|
184 | 198 | <plugin> |
185 | 199 | <groupId>org.apache.maven.plugins</groupId> |
186 | 200 | <artifactId>maven-compiler-plugin</artifactId> |
187 | | - <version>3.8.1</version> |
| 201 | + <version>3.12.1</version> |
188 | 202 | <configuration> |
189 | 203 | <source>1.8</source> |
190 | 204 | <target>1.8</target> |
|
196 | 210 | <plugin> |
197 | 211 | <groupId>org.jacoco</groupId> |
198 | 212 | <artifactId>jacoco-maven-plugin</artifactId> |
199 | | - <version>0.8.5</version> |
| 213 | + <version>0.8.7</version> |
200 | 214 | <executions> |
201 | 215 | <execution> |
202 | 216 | <id>pre-unit-test</id> |
|
216 | 230 | <plugin> |
217 | 231 | <groupId>org.apache.maven.plugins</groupId> |
218 | 232 | <artifactId>maven-gpg-plugin</artifactId> |
219 | | - <version>1.6</version> |
| 233 | + <version>3.1.0</version> |
220 | 234 | <executions> |
221 | 235 | <execution> |
222 | 236 | <id>sign-artifacts</id> |
|
233 | 247 | <plugin> |
234 | 248 | <groupId>org.apache.maven.plugins</groupId> |
235 | 249 | <artifactId>maven-source-plugin</artifactId> |
236 | | - <version>3.2.1</version> |
| 250 | + <version>3.3.0</version> |
237 | 251 | <executions> |
238 | 252 | <execution> |
239 | 253 | <id>attach-sources</id> |
|
246 | 260 | <plugin> |
247 | 261 | <groupId>org.apache.maven.plugins</groupId> |
248 | 262 | <artifactId>maven-javadoc-plugin</artifactId> |
249 | | - <version>3.2.0</version> |
| 263 | + <version>3.6.3</version> |
250 | 264 | <executions> |
251 | 265 | <execution> |
252 | 266 | <id>generate-javadoc</id> |
|
0 commit comments