Skip to content

Commit

Permalink
Adding icons and URLs for Trivy and DependencyCheck
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomGeG committed Aug 4, 2022
1 parent 3319e34 commit 80d3a3d
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
10 changes: 6 additions & 4 deletions SUPPORTED-FORMATS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- DO NOT EDIT - Generated by ParserRegistry at 2022-07-30T14:15:11.026057-->
<!--- DO NOT EDIT - Generated by ParserRegistry at 2022-08-04T02:09:49.538414400-->
# Supported Report Formats

The static analysis model supports the following report formats.
Expand Down Expand Up @@ -121,7 +121,7 @@ If your tool is supported, but some properties are missing (icon, URL, etc.), pl
trivy
</td>
<td>
-
<img src="https://github.com/aquasecurity/trivy/blob/main/docs/imgs/logo.png?raw=true" alt="Aquasec Trivy" height="64" width="64">
</td>
<td>
<a href="https://github.com/aquasecurity/trivy">
Expand Down Expand Up @@ -1323,10 +1323,12 @@ analyze - iccxxxxcompiler_opts cstat2.c</pre></code>For details check the IAR C-
owasp-dependency-check
</td>
<td>
-
<img src="https://raw.githubusercontent.com/jeremylong/DependencyCheck/main/src/site/resources/images/logo.svg" alt="OWASP Dependency Check" height="64" width="64">
</td>
<td>
OWASP Dependency Check
<a href="https://github.com/jeremylong/DependencyCheck">
OWASP Dependency Check
</a>
</td>
<td>
**/dependency-check-report.json
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,15 @@ public IssueParser createParser(final Option... options) {
public String getPattern() {
return "**/dependency-check-report.json";
}

@Override
public String getUrl() {
return "https://github.com/jeremylong/DependencyCheck";
}

@Override
public String getIconUrl() {
return "https://raw.githubusercontent.com/jeremylong/DependencyCheck/main/src/site/resources/images/logo.svg";
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,9 @@ public String getHelp() {
public String getUrl() {
return "https://github.com/aquasecurity/trivy";
}

@Override
public String getIconUrl() {
return "https://github.com/aquasecurity/trivy/blob/main/docs/imgs/logo.png?raw=true";
}
}

0 comments on commit 80d3a3d

Please sign in to comment.