Skip to content

Commit

Permalink
FUSETOOLS2-2421 - Add extra configuration for Camel Quarkus to debug
Browse files Browse the repository at this point in the history
2 options are mandatory for quite some time

Signed-off-by: Aurélien Pupier <[email protected]>
  • Loading branch information
apupier committed Jul 23, 2024
1 parent 26d01e7 commit 0cfaa49
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ export class CamelApplicationLauncherTasksCompletionItemProvider implements vsco
"args": [
"compile",
"quarkus:dev",
"'-Dcamel.main.shutdownTimeout=30'",
"'-Dquarkus.camel.source-location-enabled=true'",
"'-Pcamel.debug'" // This depends on your project. The goal here is to have camel-debug on the classpath.
],
"problemMatcher": "$camel.debug.problemMatcher",
Expand All @@ -122,6 +124,8 @@ export class CamelApplicationLauncherTasksCompletionItemProvider implements vsco
"install",
"-Dnative",
"'-Dquarkus.native.monitoring=jmxserver,jmxclient'",
"'-Dcamel.main.shutdownTimeout=30'",
"'-Dquarkus.camel.source-location-enabled=true'",
"'-Dquarkus.camel.debug.enabled=true'",
"'-Pcamel.debug'" // This depends on your project
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
"args": [
"compile",
"quarkus:dev",
"'-Dcamel.main.shutdownTimeout=30'",
"'-Dquarkus.camel.source-location-enabled=true'",
"'-Pcamel.debug'" // This depends on your project. The goal here is to have camel-debug on the classpath.
],
"problemMatcher": "$camel.debug.problemMatcher",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
"install",
"-Dnative",
"'-Dquarkus.native.monitoring=jmxserver,jmxclient'",
"'-Dcamel.main.shutdownTimeout=30'",
"'-Dquarkus.camel.source-location-enabled=true'",
"'-Dquarkus.camel.debug.enabled=true'",
"'-Pcamel.debug'" // This depends on your project
],
Expand Down

0 comments on commit 0cfaa49

Please sign in to comment.