This repository was archived by the owner on Jul 27, 2022. It is now read-only.
File tree 2 files changed +55
-2
lines changed
2 files changed +55
-2
lines changed Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <suppressions xmlns =" https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.3.xsd" >
3
+ </suppressions >
Original file line number Diff line number Diff line change 392
392
<artifactId >openapi-parser</artifactId >
393
393
<version >1.5.31</version >
394
394
</dependency >
395
-
396
-
397
395
</dependencies >
398
396
399
397
<build >
434
432
</execution >
435
433
</executions >
436
434
</plugin >
435
+ <plugin >
436
+ <groupId >org.codehaus.mojo</groupId >
437
+ <artifactId >versions-maven-plugin</artifactId >
438
+ <version >2.7</version >
439
+ <executions >
440
+ <execution >
441
+ <id >display-update-needs</id >
442
+ <goals >
443
+ <goal >display-dependency-updates</goal >
444
+ <goal >display-plugin-updates</goal >
445
+ <goal >display-property-updates</goal >
446
+ </goals >
447
+ <phase >package</phase >
448
+ </execution >
449
+ <execution >
450
+ <id >report-update-needs</id >
451
+ <goals >
452
+ <goal >property-updates-report</goal >
453
+ <goal >dependency-updates-report</goal >
454
+ <goal >plugin-updates-report</goal >
455
+ </goals >
456
+ <phase >verify</phase >
457
+ </execution >
458
+ </executions >
459
+
460
+ </plugin >
461
+ <plugin >
462
+ <groupId >org.owasp</groupId >
463
+ <artifactId >dependency-check-maven</artifactId >
464
+ <version >6.0.2</version >
465
+ <configuration >
466
+ <cveValidForHours >12</cveValidForHours >
467
+ <assemblyAnalyzerEnabled >false</assemblyAnalyzerEnabled >
468
+ <enableExperimental >false</enableExperimental >
469
+ <nodeAuditAnalyzerEnabled >false</nodeAuditAnalyzerEnabled >
470
+ <nodeAnalyzerEnabled >false</nodeAnalyzerEnabled >
471
+ <suppressionFiles >
472
+ <suppressionFile >${project.basedir} /code-control/dependency-check-suppressions.xml</suppressionFile >
473
+ </suppressionFiles >
474
+ <formats >
475
+ <format >HTML</format >
476
+ <format >XML</format >
477
+ </formats >
478
+ </configuration >
479
+ <executions >
480
+ <execution >
481
+ <goals >
482
+ <goal >check</goal >
483
+ </goals >
484
+ </execution >
485
+ </executions >
486
+ </plugin >
437
487
</plugins >
438
488
</build >
439
489
</project >
You can’t perform that action at this time.
0 commit comments