Skip to content

Commit 61ebbc7

Browse files
committed
Fix suppressionFile type for owasp dependencycheck v12
In v12, the suppressionFile property changed from File to String type.
1 parent 4a22a37 commit 61ebbc7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

gradle/validation/owasp-dependency-check.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ configure(rootProject) {
2727
formats = ['ALL']
2828
skipProjects = [':solr:solr-ref-guide', ':missing-doclet']
2929
skipConfigurations = ['unifiedClasspath', 'permitUnusedDeclared']
30-
suppressionFile = file("${resources}/exclusions.xml")
30+
suppressionFile = file("${resources}/exclusions.xml").absolutePath
3131
analyzers {
3232
assemblyEnabled = false
3333
}

0 commit comments

Comments
 (0)