Skip to content

Commit 91682cb

Browse files
authored
add owasp dependency check plugin (Azure#44010)
1 parent ff7b6ee commit 91682cb

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

eng/versioning/external_dependencies.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,7 @@ org.jacoco:org.jacoco.agent;0.8.12
209209
org.mockito:mockito-core;4.11.0
210210
org.mockito:mockito-inline;4.11.0
211211
org.moditect:moditect-maven-plugin;1.0.0.RC1
212+
org.owasp:dependency-check-maven;11.1.1
212213
org.ow2.asm:asm;9.7
213214
org.revapi:revapi;0.14.4
214215
org.revapi:revapi-java;0.26.1

sdk/parents/azure-sdk-parent/pom.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,22 @@
283283
<artifactId>maven-install-plugin</artifactId>
284284
<version>3.1.3</version> <!-- {x-version-update;org.apache.maven.plugins:maven-install-plugin;external_dependency} -->
285285
</plugin>
286+
287+
<plugin>
288+
<groupId>org.owasp</groupId>
289+
<artifactId>dependency-check-maven</artifactId>
290+
<version>11.1.1</version> <!-- {x-version-update;org.owasp:dependency-check-maven;external_dependency} -->
291+
<configuration>
292+
<skipProvidedScope>true</skipProvidedScope>
293+
</configuration>
294+
<executions>
295+
<execution>
296+
<goals>
297+
<goal>check</goal>
298+
</goals>
299+
</execution>
300+
</executions>
301+
</plugin>
286302
</plugins>
287303
</pluginManagement>
288304
</build>

0 commit comments

Comments
 (0)