diff --git a/README.md b/README.md
index 73cb665..dbf19bb 100644
--- a/README.md
+++ b/README.md
@@ -7,10 +7,10 @@
## General
-**JFrog CLI Plugins** allow enhancing the functionality of [JFrog CLI](https://www.jfrog.com/confluence/display/CLI/JFrog+CLI) to meet the specific user and organization needs. The source code of a plugin is maintained as an open source Go project on GitHub. All public plugins are registered in **JFrog CLI's Plugins Registry**. The Registry is hosted in this GitHub repository. The [plugins](plugins) directory includes a descriptor file for each plugin included in the Registry.
+**JFrog CLI Plugins** allow enhancing the functionality of [JFrog CLI](https://www.jfrog.com/confluence/display/CLI/JFrog+CLI) to meet the specific user and organization needs. The source code of a plugin is maintained as an open source Go project on GitHub. All public plugins are registered in **JFrog CLI's Plugins Registry**. The Registry is hosted in this GitHub repository. The [plugins](plugins) directory includes a descriptor file for each plugin included in the Registry.
-## Installing a plugin
-After a plugin is included in this Registry, it becomes available for installation using JFrog CLI. JFrog CLI version 1.41.1 or above is required. To install a plugin included in this registry, run the following JFrog CLI command - `jf plugin install plugin-name`.
+## Installing a plugin
+After a plugin is included in this Registry, it becomes available for installation using JFrog CLI. JFrog CLI version 1.41.1 or above is required. To install a plugin included in this registry, run the following JFrog CLI command - `jf plugin install plugin-name`.
## Available plugins
### Security plugins
@@ -36,7 +36,7 @@ After a plugin is included in this Registry, it becomes available for installati
scan-log4j-calls-jar
- This plugin recursively scans all .jar files in a root-folder. For each jar file, the plugin prints out the locations (class name and method name) of calls to info/warn/error/log/debug/trace/fatal methods of log4j2.Logger.
+ This plugin recursively scans all .jar files in a root-folder. For each jar file, the plugin prints out the locations (class name and method name) of calls to info/warn/error/log/debug/trace/fatal methods of log4j2.Logger.
|
@@ -44,7 +44,7 @@ After a plugin is included in this Registry, it becomes available for installati
scan-log4j-calls-src
|
- This plugin recursively scans all .java files in a root-folder. For each file, the plugin prints out the locations (file name and corresponding code lines) of calls to log4j2 logging methods.
+ This plugin recursively scans all .java files in a root-folder. For each file, the plugin prints out the locations (file name and corresponding code lines) of calls to log4j2 logging methods.
|
@@ -187,6 +187,14 @@ After a plugin is included in this Registry, it becomes available for installati
This plugin allows developers to run JFrog Pipelines Tasks locally in their own machines. It helps with the development process by considerably reducing the feedback loop.
+
+ |
+ vulnreport
+ |
+
+ This plugin allows developers to generate a local report of published image vulnerabilities. Additionally provides output formats to simplify insertion to pull-request comments in a delivery pipeline.
+ |
+
## Developing and publishing plugins
diff --git a/plugins/vulnreport.yml b/plugins/vulnreport.yml
new file mode 100644
index 0000000..404dd84
--- /dev/null
+++ b/plugins/vulnreport.yml
@@ -0,0 +1,7 @@
+# The vulnreport plugin
+pluginName: vulnreport
+version: v1.0.2
+repository: https://github.com/jmhardison/jfrog-vulnreport
+maintainers:
+ - jmhardison
+tag: v1.0.2
\ No newline at end of file