corrected example

This commit is contained in:
Jeremy Long
2016-07-31 07:32:30 -04:00
parent d22c920b35
commit 71e7412f15

View File

@@ -53,18 +53,16 @@ Create an aggregated dependency-check report within the site.
<plugins> <plugins>
... ...
<plugin> <plugin>
<plugin> <groupId>org.owasp</groupId>
<groupId>org.owasp</groupId> <artifactId>dependency-check-maven</artifactId>
<artifactId>dependency-check-maven</artifactId> <version>${project.version}</version>
<version>${project.version}</version> <reportSets>
<reportSets> <reportSet>
<reportSet> <reports>
<reports> <report>aggregate</report>
<report>aggregate</report> </reports>
</reports> </reportSet>
</reportSet> </reportSets>
</reportSets>
</plugin>
</plugin> </plugin>
... ...
</plugins> </plugins>