overflow_dao/.vscode/launch.json

37 lines
1.1 KiB
JSON
Raw Normal View History

2017-06-22 04:43:28 +00:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Java Run",
"type": "java",
"request": "launch",
"stopOnEntry": false,
"preLaunchTask": "compile",
"jdkPath": "${env:JAVA_HOME}/bin",
"cwd": "${workspaceRoot}",
"startupClass": "com.loafle.overflow.proxy.db.DBProxy",
"sourcePath": ["${workspaceRoot}/src/main/java"],
"options": [
"-classpath",
"${workspaceRoot}/target/classes"
]
}
,
{
"name": "Java Debug Run",
"type": "java",
"request": "launch",
"stopOnEntry": true,
"preLaunchTask": "compile",
"jdkPath": "${env:JAVA_HOME}/bin",
"cwd": "${workspaceRoot}",
"startupClass": "com.loafle.overflow.proxy.db.DBProxy",
"sourcePath": ["${workspaceRoot}/src/main/java"],
"options": [
"-classpath",
"${workspaceRoot}/target/classes"
]
}
]
}