diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..924f6a6c1 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,45 @@ +{ + // 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": [ + { + "name": "Generate all services 9.0.x", + "type": "python", + "request": "launch", + "program": "${workspaceFolder}/wsclient/utils/wsInterfaceUpdater.py", + "console": "integratedTerminal", + "justMyCode": true, + "args": ["-b", "candidate-9.0.x"], + "cwd": "${workspaceFolder}" + }, + { + "name": "wsdl updater help", + "type": "python", + "request": "launch", + "program": "${workspaceFolder}/wsclient/utils/wsInterfaceUpdater.py", + "console": "integratedTerminal", + "justMyCode": true, + "args": ["-h"], + "cwd": "${workspaceFolder}" + }, + { + "name": "Generate 9.0.x wssmc", + "type": "python", + "request": "launch", + "program": "/home/ubuntu/GIT/generate-wsdl/generate-wsdl", + "console": "integratedTerminal", + "justMyCode": true, + "args": ["-b", "candidate-9.0.x", "-s", "wssmc", "-v"] + }, + { + "type": "java", + "name": "Axis2ADBStubWrapperMaker", + "request": "launch", + "mainClass": "org.hpccsystems.ws.client.utils.Axis2ADBStubWrapperMaker", + "projectName": "wsclient", + "args": "servicename=wssmc outputpackage=org.hpccsystems.ws.client.wrappers targetpackage=org.hpccsystems.ws.client.gen.axis2.wssmc.latest servicename=WsSMC outputdir=/home/ubuntu/GIT/generate-wsdl/hpcc4j/wsclient/src/main/java" + } + ] +} \ No newline at end of file