Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save christianoguedes/25b3fe43824ac65b787e5feae66ca50c to your computer and use it in GitHub Desktop.

Select an option

Save christianoguedes/25b3fe43824ac65b787e5feae66ca50c to your computer and use it in GitHub Desktop.
...
<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