diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2020-06-26 08:41:45 -0400 |
---|---|---|
committer | Pamela Dragosh <pdragosh@research.att.com> | 2020-06-26 08:41:58 -0400 |
commit | 06b38039b8b60063896f159c18521968963cd2eb (patch) | |
tree | d468d3d7dd6e2e81e5ae3da7657bbf6112b870f3 | |
parent | 84889d914063027fd0b3030a65da74b0953f3c1f (diff) |
Add CVE Profile
Profile optionally available for checking CVE.
Issue-ID: INT-1489
Change-Id: I176f8dd0d3cc11910251374aac17803291160a6f
Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
-rw-r--r-- | oparent/pom.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/oparent/pom.xml b/oparent/pom.xml index 283a6c3..0f816ec 100644 --- a/oparent/pom.xml +++ b/oparent/pom.xml @@ -48,6 +48,26 @@ </properties> <profiles> <profile> + <id>cve</id> + <build> + <plugins> + <plugin> + <groupId>org.owasp</groupId> + <artifactId>dependency-check-maven</artifactId> + <version>5.3.2</version> + <executions> + <execution> + <goals> + <goal>check</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + + <profile> <id>generate-json</id> <activation> <file> |