| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- // 使用 IntelliSense 了解相关属性。
- // 悬停以查看现有属性的描述。
- // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
- "version": "0.2.0",
- "configurations": [
- {
- "type": "java",
- "name": "Current File",
- "request": "launch",
- "mainClass": "${file}"
- },
- {
- "type": "java",
- "name": "BaseCodeGenerator",
- "request": "launch",
- "mainClass": "com.moka.gdtauto.BaseCodeGenerator",
- "projectName": "gdt-auto"
- },
- {
- "type": "java",
- "name": "GdtAutoApplication",
- "request": "launch",
- "mainClass": "com.moka.gdtauto.GdtAutoApplication",
- "projectName": "gdt-auto",
- "vmArgs": "--add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED"
- },
- {
- "type": "java",
- "name": "ImageWatermarkSimpleTest",
- "request": "launch",
- "mainClass": "com.moka.gdtauto.util.ImageWatermarkSimpleTest",
- "projectName": "gdt-auto"
- },
- {
- "type": "java",
- "name": "SampleTest",
- "request": "launch",
- "mainClass": "com.moka.gdtauto.util.SampleTest",
- "projectName": "gdt-auto"
- },
- {
- "type": "java",
- "name": "VideoWatermarkSimpleTest",
- "request": "launch",
- "mainClass": "com.moka.gdtauto.util.VideoWatermarkSimpleTest",
- "projectName": "gdt-auto"
- }
- ]
- }
|