Created
April 15, 2018 11:24
-
-
Save nitink133/f176354aa741537a0dabed384787ab4b to your computer and use it in GitHub Desktop.
launch.json File for java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// 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