Updated for sonarqube

This commit is contained in:
2022-06-25 16:03:10 -04:00
parent a2147d8818
commit 4356292e6e
4 changed files with 105 additions and 3 deletions

37
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,37 @@
{
"java.configuration.updateBuildConfiguration": "automatic",
"Lua.runtime.special": [],
"Lua.runtime.version": "Lua 5.1",
"Lua.runtime.pathStrict": false,
"Lua.runtime.path": [
"?.lua",
"?/init.lua",
"?/__init__.lua"
],
"Lua.runtime.plugin": "c:\\Users\\m_ell\\.vscode\\extensions\\lunarwtr.lotro-api-1.0.13\\resources\\Lua\\Plugin\\plugin.lua",
"Lua.workspace.library": [
"c:\\Users\\m_ell\\.vscode\\extensions\\lunarwtr.lotro-api-1.0.13\\resources\\Lua\\EmmyLua\\Turbine"
],
"xml.fileAssociations": [
{
"pattern": "**/*.plugin",
"systemId": "c:\\Users\\m_ell\\.vscode\\extensions\\lunarwtr.lotro-api-1.0.13\\resources\\xsds\\lotroplugin.xsd"
},
{
"pattern": "**/*.plugincompendium",
"systemId": "c:\\Users\\m_ell\\.vscode\\extensions\\lunarwtr.lotro-api-1.0.13\\resources\\xsds\\plugincompendium.xsd"
},
{
"pattern": "**/*.musiccompendium",
"systemId": "c:\\Users\\m_ell\\.vscode\\extensions\\lunarwtr.lotro-api-1.0.13\\resources\\xsds\\musiccompendium.xsd"
},
{
"pattern": "**/*.skincompendium",
"systemId": "c:\\Users\\m_ell\\.vscode\\extensions\\lunarwtr.lotro-api-1.0.13\\resources\\xsds\\skincompendium.xsd"
},
{
"pattern": "**/SkinDefinition.xml",
"systemId": "c:\\Users\\m_ell\\.vscode\\extensions\\lunarwtr.lotro-api-1.0.13\\resources\\xsds\\lotro-skin.xsd"
}
]
}

42
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,42 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "verify",
"type": "shell",
"command": "mvn -B verify",
"group": "build"
},
{
"label": "test",
"type": "shell",
"command": "mvn -B test",
"group": "test"
},
{
"label": "sonarqube build",
"group": "build",
"type": "shell",
"command": "mvn",
"args": [
"clean",
"verify",
"sonar:sonar",
"-D'sonar.projectKey=mattrixwv_matrix_AYGcc3wBopaC7KAbzMEd'",
"-D'sonar.host.url=http://192.168.1.4:9000'",
"-D'sonar.login=sqp_7edfbc2b6a7d612a4492cafa51e210e5a61f5f7d'"
],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": false
},
"problemMatcher": []
}
]
}