Initial commit
This commit is contained in:
14
.vscode/launch.json
vendored
Normal file
14
.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"configurations": [
|
||||
{
|
||||
"type": "java",
|
||||
"name": "Spring Boot-CipherStreamWeb<cipherstream-website>",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"mainClass": "com.mattrixwv.cipherstream.CipherStreamWeb",
|
||||
"projectName": "cipherstream-website",
|
||||
"args": "--spring.config.additional-location=local/application.properties --logging.config=local/log4j2-spring.xml",
|
||||
"envFile": "${workspaceFolder}/.env"
|
||||
}
|
||||
]
|
||||
}
|
||||
18
.vscode/settings.json
vendored
Normal file
18
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"sonarlint.connectedMode.project": {
|
||||
"connectionId": "mattrixwvSonarqube",
|
||||
"projectKey": "CipherStreamWeb"
|
||||
},
|
||||
"java.configuration.updateBuildConfiguration": "automatic",
|
||||
"java.compile.nullAnalysis.mode": "automatic",
|
||||
"java.test.config": {
|
||||
"name": "",
|
||||
"workingDirectory": "${workspaceFolder}",
|
||||
"testKind": "junit",
|
||||
"filters": {
|
||||
"tags": [
|
||||
"unit-test"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
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