Skip to content

Commit

Permalink
fix(): commented the owasp
Browse files Browse the repository at this point in the history
  • Loading branch information
Arielpetit committed Nov 27, 2024
1 parent 752dceb commit 1158dfd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/develop.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
</settings>" > ~/.m2/settings.xml
- name: Run Unit and Integration Tests
run: mvn verify -s ~/.m2/settings.xml -Dmaven.javadoc.skip=true
run: mvn verify -s ~/.m2/settings.xml -Dmaven.javadoc.skip=true -Ddependency-check.skip=true


build:
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
- name: Build with webank Online banking
run: mvn clean install -s ~/.m2/settings.xml -DskipTests -DskipITs -Dmaven.javadoc.skip=true
run: mvn clean install -s ~/.m2/settings.xml -DskipTests -DskipITs -Dmaven.javadoc.skip=true -Ddependency-check.skip=true



Expand Down Expand Up @@ -112,13 +112,13 @@ jobs:


- name: build project before check
run: mvn -ntp -DskipTests -DskipITs -Dmaven.javadoc.skip=true clean install
run: mvn -ntp -DskipTests -DskipITs -Dmaven.javadoc.skip=true clean install -Ddependency-check.skip=true

- name: Check pmd
run: mvn -ntp pmd:check
run: mvn -ntp pmd:check -Ddependency-check.skip=true


# security-scan:
# security-scan:
# name: Owasp security scan
# runs-on: ubuntu-latest
# needs: build # Ensures that the security scan runs only if the build job succeeds
Expand Down Expand Up @@ -198,4 +198,4 @@ jobs:
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
run: mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=webank-online-banking -Dsonar.projectName='webank-online-banking'
run: mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=webank-online-banking -Dsonar.projectName='webank-online-banking' -Ddependency-check.skip=true

0 comments on commit 1158dfd

Please sign in to comment.