Created
August 12, 2020 01:21
-
-
Save christianoguedes/25b3fe43824ac65b787e5feae66ca50c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ... | |
| <profiles> | |
| <profile> | |
| <id>prd</id> <!-- chave do profile usado pelo CI/CD --> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.owasp</groupId> | |
| <artifactId>dependency-check-maven</artifactId> | |
| <version>5.3.2</version> | |
| <configuration> | |
| <failBuildOnCVSS>7</failBuildOnCVSS> | |
| </configuration> | |
| <executions> | |
| <execution> | |
| <goals> | |
| <goal>check</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </profile> | |
| </profiles> | |
| ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment