|
4 | 4 | <parent>
|
5 | 5 | <groupId>io.swagger.codegen.v3</groupId>
|
6 | 6 | <artifactId>swagger-codegen-project</artifactId>
|
7 |
| - <version>3.0.14</version> |
| 7 | + <version>3.0.15-SNAPSHOT</version> |
8 | 8 | <relativePath>../..</relativePath>
|
9 | 9 | </parent>
|
10 | 10 | <artifactId>swagger-generator</artifactId>
|
|
38 | 38 | </execution>
|
39 | 39 | </executions>
|
40 | 40 | </plugin>
|
| 41 | +<!-- <plugin> |
| 42 | + <groupId>org.codehaus.mojo</groupId> |
| 43 | + <artifactId>properties-maven-plugin</artifactId> |
| 44 | + <version>1.0.0</version> |
| 45 | + <executions> |
| 46 | + <execution> |
| 47 | + <phase>pre-integration-test</phase> |
| 48 | + <goals> |
| 49 | + <goal>set-system-properties</goal> |
| 50 | + </goals> |
| 51 | + <configuration> |
| 52 | + <properties> |
| 53 | + <property> |
| 54 | + <name>org.eclipse.jetty.util.log.class</name> |
| 55 | + <value>org.eclipse.jetty.util.log.StdErrLog</value> |
| 56 | + </property> |
| 57 | + <property> |
| 58 | + <name>org.eclipse.jetty.annotations.AnnotationParser.LEVEL</name> |
| 59 | + <value>OFF</value> |
| 60 | + </property> |
| 61 | + </properties> |
| 62 | + </configuration> |
| 63 | + </execution> |
| 64 | + </executions> |
| 65 | + </plugin>--> |
41 | 66 | <plugin>
|
42 | 67 | <groupId>org.apache.maven.plugins</groupId>
|
43 | 68 | <artifactId>maven-failsafe-plugin</artifactId>
|
|
293 | 318 | <groupId>javax.servlet</groupId>
|
294 | 319 | <artifactId>javax.servlet-api</artifactId>
|
295 | 320 | <version>${servlet-api.version}</version>
|
| 321 | + <scope>provided</scope> |
296 | 322 | </dependency>
|
297 | 323 | <dependency>
|
298 | 324 | <groupId>io.swagger.codegen.v3</groupId>
|
299 | 325 | <artifactId>swagger-codegen</artifactId>
|
300 | 326 | <version>${project.version}</version>
|
| 327 | + <exclusions> |
| 328 | + <exclusion> |
| 329 | + <groupId>javax.activation</groupId> |
| 330 | + <artifactId>activation</artifactId> |
| 331 | + </exclusion> |
| 332 | + <exclusion> |
| 333 | + <groupId>javax.xml.bind</groupId> |
| 334 | + <artifactId>jaxb-api</artifactId> |
| 335 | + </exclusion> |
| 336 | + </exclusions> |
301 | 337 | </dependency>
|
302 | 338 | <dependency>
|
303 | 339 | <groupId>io.swagger.codegen.v3</groupId>
|
304 | 340 | <artifactId>swagger-codegen-generators</artifactId>
|
| 341 | + <exclusions> |
| 342 | + <exclusion> |
| 343 | + <groupId>javax.activation</groupId> |
| 344 | + <artifactId>activation</artifactId> |
| 345 | + </exclusion> |
| 346 | + <exclusion> |
| 347 | + <groupId>javax.xml.bind</groupId> |
| 348 | + <artifactId>jaxb-api</artifactId> |
| 349 | + </exclusion> |
| 350 | + </exclusions> |
305 | 351 | </dependency>
|
306 | 352 | <dependency>
|
307 | 353 | <groupId>io.swagger</groupId>
|
|
312 | 358 | <groupId>org.codehaus.woodstox</groupId>
|
313 | 359 | <artifactId>woodstox-core-asl</artifactId>
|
314 | 360 | </exclusion>
|
| 361 | + <exclusion> |
| 362 | + <groupId>javax.activation</groupId> |
| 363 | + <artifactId>activation</artifactId> |
| 364 | + </exclusion> |
| 365 | + <exclusion> |
| 366 | + <groupId>javax.xml.bind</groupId> |
| 367 | + <artifactId>jaxb-api</artifactId> |
| 368 | + </exclusion> |
| 369 | + <exclusion> |
| 370 | + <groupId>javax.inject</groupId> |
| 371 | + <artifactId>javax.inject</artifactId> |
| 372 | + </exclusion> |
315 | 373 | </exclusions>
|
316 | 374 | </dependency>
|
317 | 375 | <dependency>
|
318 | 376 | <groupId>org.testng</groupId>
|
319 | 377 | <artifactId>testng</artifactId>
|
320 | 378 | <scope>test</scope>
|
| 379 | + <exclusions> |
| 380 | + <exclusion> |
| 381 | + <groupId>javax.inject</groupId> |
| 382 | + <artifactId>javax.inject</artifactId> |
| 383 | + </exclusion> |
| 384 | + <exclusion> |
| 385 | + <groupId>aopalliance</groupId> |
| 386 | + <artifactId>aopalliance</artifactId> |
| 387 | + </exclusion> |
| 388 | + </exclusions> |
321 | 389 | </dependency>
|
322 | 390 | </dependencies>
|
323 | 391 | <properties>
|
|
0 commit comments