Skip to content
Snippets Groups Projects

utiliser les cibles check pour les vérifications Checkstyle, PMD et CPD

Merged Olivier Maury requested to merge update-sun_checks into main
1 file
+ 3
3
Compare changes
  • Side-by-side
  • Inline
+ 3
3
@@ -71,21 +71,21 @@ checkstyle_job:
extends: .settingsxml
needs: ["test_job"]
script:
- mvn $MAVEN_CLI_OPTS checkstyle:checkstyle
- mvn $MAVEN_CLI_OPTS checkstyle:check
pmd_job:
stage: code-check
extends: .settingsxml
needs: ["test_job"]
script:
- mvn $MAVEN_CLI_OPTS pmd:pmd
- mvn $MAVEN_CLI_OPTS pmd:check
cpd_job:
stage: code-check
extends: .settingsxml
needs: ["test_job"]
script:
- mvn $MAVEN_CLI_OPTS pmd:cpd
- mvn $MAVEN_CLI_OPTS pmd:cpd-check
cobertura_job:
stage: deploy
Loading