Skip to content
This repository was archived by the owner on Jul 27, 2022. It is now read-only.

Commit 72fdf91

Browse files
committed
MISPDEV-8 versions update & vulnerability reporting added
1 parent 4af3fb0 commit 72fdf91

File tree

2 files changed

+55
-2
lines changed

2 files changed

+55
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.3.xsd">
3+
</suppressions>

pom.xml

+52-2
Original file line numberDiff line numberDiff line change
@@ -392,8 +392,6 @@
392392
<artifactId>openapi-parser</artifactId>
393393
<version>1.5.31</version>
394394
</dependency>
395-
396-
397395
</dependencies>
398396

399397
<build>
@@ -434,6 +432,58 @@
434432
</execution>
435433
</executions>
436434
</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>
437487
</plugins>
438488
</build>
439489
</project>

0 commit comments

Comments
 (0)