projet-donnees-reparties/.vscode/launch.json
Laureηt 72ebb50107
feat: basiquement tout fonctionne sauf le callback en version serveur
on dirait que le truc ets pas sérialisable et jsp comment faire
2021-12-30 18:40:11 +01:00

47 lines
1.3 KiB
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Launch Main",
"request": "launch",
"mainClass": "linda.search.basic.Main",
"projectName": "Projet PDR"
},
{
"type": "java",
"name": "Launch Searcher",
"request": "launch",
"mainClass": "linda.search.basic.Searcher",
"args": [
"4000"
],
"projectName": "Projet PDR"
},
{
"type": "java",
"name": "Launch Manager",
"request": "launch",
"mainClass": "linda.search.basic.Manager",
"args": [
"4000",
"/usr/share/dict/french",
"agneau"
],
"projectName": "Projet PDR"
},
{
"type": "java",
"name": "Launch LindaServer",
"request": "launch",
"mainClass": "linda.server.LindaServer",
"args": [
"4000"
],
"projectName": "Projet PDR"
}
]
}