launch.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. // 使用 IntelliSense 了解相关属性。
  3. // 悬停以查看现有属性的描述。
  4. // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "type": "java",
  9. "name": "Current File",
  10. "request": "launch",
  11. "mainClass": "${file}"
  12. },
  13. {
  14. "type": "java",
  15. "name": "BaseCodeGenerator",
  16. "request": "launch",
  17. "mainClass": "com.moka.gdtauto.BaseCodeGenerator",
  18. "projectName": "gdt-auto"
  19. },
  20. {
  21. "type": "java",
  22. "name": "GdtAutoApplication",
  23. "request": "launch",
  24. "mainClass": "com.moka.gdtauto.GdtAutoApplication",
  25. "projectName": "gdt-auto",
  26. "vmArgs": "--add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED"
  27. },
  28. {
  29. "type": "java",
  30. "name": "ImageWatermarkSimpleTest",
  31. "request": "launch",
  32. "mainClass": "com.moka.gdtauto.util.ImageWatermarkSimpleTest",
  33. "projectName": "gdt-auto"
  34. },
  35. {
  36. "type": "java",
  37. "name": "SampleTest",
  38. "request": "launch",
  39. "mainClass": "com.moka.gdtauto.util.SampleTest",
  40. "projectName": "gdt-auto"
  41. },
  42. {
  43. "type": "java",
  44. "name": "VideoWatermarkSimpleTest",
  45. "request": "launch",
  46. "mainClass": "com.moka.gdtauto.util.VideoWatermarkSimpleTest",
  47. "projectName": "gdt-auto"
  48. }
  49. ]
  50. }