Add config files
Headless CI Tests / build (push) Has been cancelled
Run LinkedWarrantTest / build (push) Has been cancelled
Run Separate Tests / build (push) Has been cancelled
Static Analysis Java25 / build (push) Has been cancelled
Static Analysis / build (push) Has been cancelled
Typescript Check / tsc (push) Has been cancelled
Windows Java25 CI Tests / build (push) Has been cancelled
Windows CI Tests / build (push) Has been cancelled

This commit is contained in:
Serge NOEL
2026-06-17 14:17:22 +02:00
parent efdf1683af
commit 2c45fc244e
41 changed files with 2229 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{
"java.configuration.updateBuildConfiguration": "automatic",
"java.dependency.packagePresentation": "hierarchical",
"java.test.config": [
{
"name": "JMRI",
"workingDirectory": "${workspaceFolder}",
"vmargs": [
"-Duser.language=en",
"-Duser.region=US",
"-Djmri.prefsdir=${workspaceFolder}/temp",
"-Djmri.shutdownmanager=jmri.util.MockShutDownManager"
]
}
],
"java.test.defaultConfig": "JMRI",
"java.format.settings.profile": "JMRI",
"java.format.settings.url": ".settings/org.eclipse.jdt.core.prefs",
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
}
}
+25
View File
@@ -0,0 +1,25 @@
{
// 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": "compile",
"type": "shell",
"command": "mvn -B test-compile",
"group": "build"
}
]
}