{ "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" ] } ] }