first commit

This commit is contained in:
itapiafe 2026-03-31 14:15:23 +02:00
commit cfb7b687b4
1 changed files with 9 additions and 0 deletions

9
README.md Normal file
View File

@ -0,0 +1,9 @@
#Trigger SonarQube Analysis
```shell script
mvn -P dependencies-check,security-check,static-analysis,code-coverage,javadoc clean install checkstyle:checkstyle spotbugs:spotbugs dependency-check:aggregate sonar:sonar -DfailIfNoTests=false
```
to run the analysis with reduced log level use the following command:
```shell script
mvn -P dependencies-check,security-check,static-analysis,code-coverage,javadoc clean install checkstyle:checkstyle spotbugs:spotbugs dependency-check:aggregate sonar:sonar -Dlog4j.configuration=file:"./e-rights-common/src/main/resources/log4j.xml" -DfailIfNoTests=false
```