Nicolas DUMINIL

Results 27 comments of Nicolas DUMINIL

@scrocquesel : "I don't think you need to mix Quarkus and CDK". While I don't mandatory need to do that, it's extremely important to be able to do that. Unless...

@scrocquesel : Many thanks for your help. "then, you can run cdk ls ..." Not sure how do you run that as the Quarkus app is executing in foreground and,...

@scrocquesel : I'm running the following command: $ cdk deploy --all This looks in the `cdk.json` file for the `app:` element which is mvn clean package && java -jar target/quarkus-app/quarkus-run.jar...

As I said, I need to call `waitForExit()` such that to avoid the app to exit as soon as started. For example, the following code: @QuarkusMain public class CdkApiGatewayApp implements...

> "This is the dev mode experience with `mvn quarkus:dev`." It looks like it, as a matter of fact, but I don't know why is that as I didn't run...

> I'll create a PR ... Great, looking forward for it. When do you think you'll be doing that ? > You'll definitely need to read more ... In my...

My bad, I've seen you've already created the PR, sorry for not having realized that. I confirm that, thanks to the modifications you've brought, everything works now as expected. Many...

@scrocquesel : Hi, I'm so sorry but I have to reopen once again this issue because something isn't right here, as far as CDI is concerned. I modified the master...

> The ctor is executed, THEN, the properties are injected. Got it, thanks.