Skip to content

Instantly share code, notes, and snippets.

View m-tilab's full-sized avatar
🎯
Focusing

Mahdi Tilab m-tilab

🎯
Focusing
View GitHub Profile
@m-tilab
m-tilab / build.gradle
Last active September 30, 2024 08:39
Owasp dependency check plugin
buildscript {
 repositories {
 mavenCentral()
 }
 dependencies {
 classpath 'org.owasp:dependency-check-gradle:{Plugin-version}'
 }
}
apply plugin: 'org.owasp.dependencycheck'
@m-tilab
m-tilab / pom.xml
Created September 30, 2024 08:42
Maven Owasp dependency Check
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>$pluginVersion</version>
<configuration>
<failBuildOnCVSS>8</failBuildOnCVSS>
</configuration>
<executions>
<execution>
<goals>
@m-tilab
m-tilab / shell.sh
Created September 30, 2024 09:26
execute the gradle dependencyCheckAnalyze
./gradlew dependencyCheckAnalyze