Added sonarqube dependency check

This commit is contained in:
2022-07-30 15:56:44 -04:00
parent 69a8d63e3c
commit 43a7cec440
3 changed files with 51 additions and 17 deletions

29
.vscode/tasks.json vendored
View File

@@ -16,22 +16,29 @@
"group": "test"
},
{
"label": "sonarqube build",
"label": "sonarqube build (Windows)",
"group": "build",
"type": "shell",
"command": "mvn",
"args": [
"clean",
"verify",
"sonar:sonar",
"-D'sonar.projectKey=mattrixwv_cipherstreamjava_AYGcdy79opaC7KAbzMEs'",
"-D'sonar.host.url=http://192.168.1.4:9000'",
"-D'sonar.login=sqp_4f0470fd456027ec97025bf1793358c54f4e7e03'"
],
"command": "./sonarBuild.ps1",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"focus": true,
"panel": "shared",
"showReuseMessage": true,
"clear": false
},
"problemMatcher": []
},
{
"label": "sonarqube build (Linux)",
"group": "build",
"type": "shell",
"command": "./sonarBuild.sh",
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "shared",
"showReuseMessage": true,
"clear": false