2019-01-07 15:53:32 +00:00
|
|
|
sonarqube_master_job:
|
|
|
|
stage: test
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
script:
|
2019-01-07 20:02:09 +00:00
|
|
|
- mvn --batch-mode org.owasp:dependency-check-maven:check
|
2019-01-08 18:43:58 +00:00
|
|
|
- mvn --batch-mode verify sonar:sonar -D sonar.host.url=$SONAR_URL -D sonar.login=$SONAR_LOGIN -D sonar.dependencyCheck.reportPath=$DEP_CHECK_REPORT_PATH_XML -D sonar.dependencyCheck.htmlReportPath=$DEP_CHECK_REPORT_PATH_HTML
|
|
|
|
|
|
|
|
dast_master_package_job:
|
|
|
|
stage: test
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
script:
|
|
|
|
- mvn --batch-mode package
|