Initial commit
This commit is contained in:
46
.vscode/tasks.json
vendored
Normal file
46
.vscode/tasks.json
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"type": "java (buildArtifact)",
|
||||
"mainClass": "com.mattrixwv.cipherstream.CipherStreamWebsite.java",
|
||||
"targetPath": "${workspaceFolder}/${workspaceFolderBasename}.jar",
|
||||
"elements": [
|
||||
"${compileOutput}",
|
||||
"${dependencies}"
|
||||
],
|
||||
"problemMatcher": [],
|
||||
"label": "java: exportjar:CipherStreamWeb"
|
||||
},
|
||||
{
|
||||
"label": "sonarqube build (Windows)",
|
||||
"group": "build",
|
||||
"type": "shell",
|
||||
"command": "./sonarBuild.ps1",
|
||||
"presentation": {
|
||||
"echo": true,
|
||||
"reveal": "always",
|
||||
"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
|
||||
},
|
||||
"problemMatcher": []
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user