diff options
| -rw-r--r-- | android/e2e/build.gradle.kts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/android/e2e/build.gradle.kts b/android/e2e/build.gradle.kts index 232e72386c..07e80769db 100644 --- a/android/e2e/build.gradle.kts +++ b/android/e2e/build.gradle.kts @@ -94,6 +94,14 @@ tasks.whenTaskAdded { } } +configure<org.owasp.dependencycheck.gradle.extension.DependencyCheckExtension> { + // Skip the lintClassPath configuration, which relies on many dependencies that has been flagged + // to have CVEs, as it's related to the lint tooling rather than the project's compilation class + // path. The alternative would be to suppress specific CVEs, however that could potentially + // result in suppressed CVEs in project compilation class path. + skipConfigurations = listOf("lintClassPath") +} + dependencies { implementation(Dependencies.AndroidX.testCore) implementation(Dependencies.AndroidX.testOrchestrator) |
