-
Hello, I am using the quarkus-amazon-lambda extension to build a The dev server appears to be running
But it responds to the Are the |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 3 replies
-
/cc @Ladicek (arc), @manovotn (arc), @matejvasek (amazon-lambda), @mkouba (arc), @patriot1burke (amazon-lambda) |
Beta Was this translation helpful? Give feedback.
-
As discussed in quarkusio/code.quarkus.io#1173 you need vertx-http for the dev ui to work |
Beta Was this translation helpful? Give feedback.
-
There's a long standing issue of using the dev ui with our lambda extension. Basically requires a rewrite of the dev ui plumbing which is why it has been on the back burner for awhile |
Beta Was this translation helpful? Give feedback.
-
For Gradle users trying to figure out how to exclude the lambda extension from dev while still including it in tests and the production artifact, the following worked for me: dependencies {
implementation(enforcedPlatform("io.quarkus:quarkus-bom:3.0.1.Final"))
implementation("jakarta.ws.rs:jakarta.ws.rs-api")
runtimeOnly("io.quarkus:quarkus-resteasy")
runtimeOnly("io.quarkus:quarkus-resteasy-jackson")
quarkusDev("io.quarkus:quarkus-smallrye-openapi")
// add lambda extension to production artifact
quarkusProdRuntimeClasspathConfigurationDeployment("io.quarkus:quarkus-amazon-lambda-rest")
// also add lambda extension to the test class path for QuarkusTest
testImplementation("io.quarkus:quarkus-amazon-lambda-rest")
testImplementation("io.quarkus:quarkus-junit5")
testImplementation("io.rest-assured:rest-assured")
} |
Beta Was this translation helpful? Give feedback.
As discussed in quarkusio/code.quarkus.io#1173 you need vertx-http for the dev ui to work