Update .gitlab-ci.yml file

This commit is contained in:
Jonah Bauer 2021-12-14 10:59:04 +01:00
parent 51e8dbdbeb
commit c328377478
2 changed files with 7 additions and 1 deletions

View File

@ -41,4 +41,6 @@ test:
artifacts:
when: always
reports:
junit: "**/build/test-results/test/**/TEST-*.xml"
junit:
- "**/build/test-results/test/**/TEST-*.xml"
- "**/build/reports/dependency-check-junit.xml"

View File

@ -68,4 +68,8 @@ subprojects {
dependsOn("dependencyCheckAnalyze")
}
}
configure<org.owasp.dependencycheck.gradle.extension.DependencyCheckExtension> {
format = org.owasp.dependencycheck.reporting.ReportGenerator.Format.JUNIT
}
}