|
43 | 43 | <plugin>
|
44 | 44 | <groupId>org.apache.maven.plugins</groupId>
|
45 | 45 | <artifactId>maven-enforcer-plugin</artifactId>
|
46 |
| - <version>3.0.0-M1</version> |
| 46 | + <version>3.0.0-M3</version> |
47 | 47 | <executions>
|
48 | 48 | <execution>
|
49 | 49 | <id>enforce-maven</id>
|
|
53 | 53 | <configuration>
|
54 | 54 | <rules>
|
55 | 55 | <requireMavenVersion>
|
56 |
| - <version>2.2.0</version> |
| 56 | + <version>3.0.5</version> |
57 | 57 | </requireMavenVersion>
|
58 | 58 | </rules>
|
59 | 59 | </configuration>
|
|
63 | 63 | <plugin>
|
64 | 64 | <groupId>org.apache.maven.plugins</groupId>
|
65 | 65 | <artifactId>maven-surefire-plugin</artifactId>
|
66 |
| - <version>2.12</version> |
| 66 | + <version>2.22.2</version> |
67 | 67 | <configuration>
|
68 | 68 | <systemProperties>
|
69 | 69 | <property>
|
70 | 70 | <name>loggerPath</name>
|
71 | 71 | <value>conf/log4j.properties</value>
|
72 | 72 | </property>
|
73 | 73 | </systemProperties>
|
74 |
| - <argLine>-Xms512m -Xmx1500m</argLine> |
75 |
| - <parallel>methods</parallel> |
76 |
| - <forkMode>pertest</forkMode> |
| 74 | + <reuseForks>false</reuseForks> |
| 75 | + <forkCount>1C</forkCount> |
77 | 76 | </configuration>
|
78 | 77 | </plugin>
|
79 | 78 | <plugin>
|
|
111 | 110 | <plugin>
|
112 | 111 | <groupId>org.codehaus.mojo</groupId>
|
113 | 112 | <artifactId>build-helper-maven-plugin</artifactId>
|
| 113 | + <version>3.1.0</version> |
114 | 114 | <executions>
|
115 | 115 | <execution>
|
116 | 116 | <id>add_sources</id>
|
|
141 | 141 | <plugin>
|
142 | 142 | <groupId>org.apache.maven.plugins</groupId>
|
143 | 143 | <artifactId>maven-compiler-plugin</artifactId>
|
144 |
| - <version>3.6.1</version> |
| 144 | + <version>3.8.1</version> |
145 | 145 | <configuration>
|
146 | 146 | <source>1.8</source>
|
147 | 147 | <target>1.8</target>
|
|
150 | 150 | <plugin>
|
151 | 151 | <groupId>org.apache.maven.plugins</groupId>
|
152 | 152 | <artifactId>maven-javadoc-plugin</artifactId>
|
153 |
| - <version>3.1.1</version> |
| 153 | + <version>3.2.0</version> |
154 | 154 | <configuration>
|
155 | 155 | <doclint>none</doclint>
|
156 | 156 | </configuration>
|
|
166 | 166 | <plugin>
|
167 | 167 | <groupId>org.apache.maven.plugins</groupId>
|
168 | 168 | <artifactId>maven-source-plugin</artifactId>
|
169 |
| - <version>2.2.1</version> |
| 169 | + <version>3.2.0</version> |
170 | 170 | <executions>
|
171 | 171 | <execution>
|
172 | 172 | <id>attach-sources</id>
|
|
187 | 187 | <plugin>
|
188 | 188 | <groupId>org.apache.maven.plugins</groupId>
|
189 | 189 | <artifactId>maven-gpg-plugin</artifactId>
|
190 |
| - <version>1.5</version> |
| 190 | + <version>1.6</version> |
191 | 191 | <executions>
|
192 | 192 | <execution>
|
193 | 193 | <id>sign-artifacts</id>
|
|
203 | 203 | </profile>
|
204 | 204 | </profiles>
|
205 | 205 |
|
| 206 | + {{#jackson}} |
| 207 | + <dependencyManagement> |
| 208 | + <dependencies> |
| 209 | + <dependency> |
| 210 | + <groupId>com.fasterxml.jackson</groupId> |
| 211 | + <artifactId>jackson-bom</artifactId> |
| 212 | + <version>${jackson-version}</version> |
| 213 | + <type>pom</type> |
| 214 | + <scope>import</scope> |
| 215 | + </dependency> |
| 216 | + </dependencies> |
| 217 | + </dependencyManagement> |
| 218 | + {{/jackson}} |
| 219 | + |
206 | 220 | <dependencies>
|
207 | 221 | <dependency>
|
208 | 222 | <groupId>io.swagger</groupId>
|
|
215 | 229 | <artifactId>jsr305</artifactId>
|
216 | 230 | <version>3.0.2</version>
|
217 | 231 | </dependency>
|
| 232 | + {{^hideGenerationTimestamp}} |
| 233 | + <dependency> |
| 234 | + <groupId>javax.annotation</groupId> |
| 235 | + <artifactId>javax.annotation-api</artifactId> |
| 236 | + <version>1.3.2</version> |
| 237 | + <scope>provided</scope> |
| 238 | + </dependency> |
| 239 | + {{/hideGenerationTimestamp}} |
218 | 240 | <dependency>
|
219 | 241 | <groupId>io.rest-assured</groupId>
|
220 | 242 | <artifactId>rest-assured</artifactId>
|
|
253 | 275 | <dependency>
|
254 | 276 | <groupId>com.fasterxml.jackson.core</groupId>
|
255 | 277 | <artifactId>jackson-core</artifactId>
|
256 |
| - <version>${jackson-version}</version> |
257 | 278 | </dependency>
|
258 | 279 | <dependency>
|
259 | 280 | <groupId>com.fasterxml.jackson.core</groupId>
|
260 | 281 | <artifactId>jackson-annotations</artifactId>
|
261 |
| - <version>${jackson-version}</version> |
262 | 282 | </dependency>
|
263 | 283 | <dependency>
|
264 | 284 | <groupId>com.fasterxml.jackson.core</groupId>
|
265 | 285 | <artifactId>jackson-databind</artifactId>
|
266 |
| - <version>${jackson-databind-version}</version> |
267 | 286 | </dependency>
|
268 | 287 | <dependency>
|
269 | 288 | <groupId>org.openapitools</groupId>
|
|
274 | 293 | <dependency>
|
275 | 294 | <groupId>com.fasterxml.jackson.dataformat</groupId>
|
276 | 295 | <artifactId>jackson-dataformat-xml</artifactId>
|
277 |
| - <version>${jackson-version}</version> |
278 | 296 | </dependency>
|
279 | 297 | {{/withXml}}
|
280 | 298 | {{#joda}}
|
281 | 299 | <dependency>
|
282 | 300 | <groupId>com.fasterxml.jackson.datatype</groupId>
|
283 | 301 | <artifactId>jackson-datatype-joda</artifactId>
|
284 |
| - <version>${jackson-version}</version> |
285 | 302 | </dependency>
|
286 | 303 | {{/joda}}
|
287 | 304 | {{#java8}}
|
288 | 305 | <dependency>
|
289 | 306 | <groupId>com.fasterxml.jackson.datatype</groupId>
|
290 | 307 | <artifactId>jackson-datatype-jsr310</artifactId>
|
291 |
| - <version>${jackson-version}</version> |
292 | 308 | </dependency>
|
293 | 309 | {{/java8}}
|
294 | 310 | {{#threetenbp}}
|
|
304 | 320 | <artifactId>okio</artifactId>
|
305 | 321 | <version>${okio-version}</version>
|
306 | 322 | </dependency>
|
| 323 | + {{#useBeanValidation}} |
| 324 | + <!-- Bean Validation API support --> |
| 325 | + <dependency> |
| 326 | + <groupId>javax.validation</groupId> |
| 327 | + <artifactId>validation-api</artifactId> |
| 328 | + <version>2.0.1.Final</version> |
| 329 | + <scope>provided</scope> |
| 330 | + </dependency> |
| 331 | + {{/useBeanValidation}} |
| 332 | + {{#performBeanValidation}} |
| 333 | + <!-- Bean Validation Impl. used to perform BeanValidation --> |
| 334 | + <dependency> |
| 335 | + <groupId>org.hibernate</groupId> |
| 336 | + <artifactId>hibernate-validator</artifactId> |
| 337 | + <version>6.0.19.Final</version> |
| 338 | + </dependency> |
| 339 | + {{/performBeanValidation}} |
307 | 340 | <!-- test dependencies -->
|
308 | 341 | <dependency>
|
309 | 342 | <groupId>junit</groupId>
|
|
315 | 348 | <properties>
|
316 | 349 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
317 | 350 | <swagger-annotations-version>1.5.21</swagger-annotations-version>
|
318 |
| - <rest-assured.version>4.0.0</rest-assured.version> |
319 |
| - <gson-version>2.8.5</gson-version> |
320 |
| - <gson-fire-version>1.8.3</gson-fire-version> |
321 |
| - <maven-plugin-version>1.0.0</maven-plugin-version> |
| 351 | + <rest-assured.version>4.3.0</rest-assured.version> |
| 352 | + <gson-version>2.8.6</gson-version> |
| 353 | + <gson-fire-version>1.8.4</gson-fire-version> |
322 | 354 | {{#joda}}
|
323 |
| - <jodatime-version>2.9.9</jodatime-version> |
| 355 | + <jodatime-version>2.10.5</jodatime-version> |
324 | 356 | {{/joda}}
|
325 | 357 | {{#threetenbp}}
|
326 |
| - <threetenbp-version>1.4.0</threetenbp-version> |
| 358 | + <threetenbp-version>1.4.3</threetenbp-version> |
327 | 359 | {{/threetenbp}}
|
328 | 360 | {{#jackson}}
|
329 |
| - <jackson-version>2.10.1</jackson-version> |
330 |
| - <jackson-databind-version>2.9.10</jackson-databind-version> |
| 361 | + <jackson-version>2.10.3</jackson-version> |
331 | 362 | <jackson-databind-nullable-version>0.2.1</jackson-databind-nullable-version>
|
332 | 363 | {{#threetenbp}}
|
333 |
| - <jackson-threetenbp-version>2.9.10</jackson-threetenbp-version> |
| 364 | + <jackson-threetenbp-version>2.10.0</jackson-threetenbp-version> |
334 | 365 | {{/threetenbp}}
|
335 | 366 | {{/jackson}}
|
336 |
| - <okio-version>1.13.0</okio-version> |
| 367 | + <okio-version>1.17.5</okio-version> |
337 | 368 | <junit-version>4.13</junit-version>
|
338 | 369 | </properties>
|
339 | 370 | </project>
|
0 commit comments