Skip to content

Instantly share code, notes, and snippets.

@nitink133
Created April 15, 2018 11:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nitink133/f176354aa741537a0dabed384787ab4b to your computer and use it in GitHub Desktop.
Save nitink133/f176354aa741537a0dabed384787ab4b to your computer and use it in GitHub Desktop.
launch.json File for java
{
// 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": "Debug (Launch)-App<com.blackpaper.topdf>",
"request": "launch",
"cwd": "${workspaceFolder}",
"console": "internalConsole",
"stopOnEntry": false,
"mainClass": "in.blackpaper.topdf.App",
"projectName": "com.blackpaper.topdf",
"args": ""
},
{
"type": "java",
"name": "Debug (Attach)",
"request": "attach",
"hostName": "localhost",
"port": 0
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment