Problem through YOUR SECOND QUARKUS APPLICATION tutorial #41229
Unanswered
guipinheiro
asked this question in
Q&A
Replies: 3 comments 1 reply
-
That looks like a bug. Multiple should work. |
Beta Was this translation helpful? Give feedback.
0 replies
-
This worked: |
Beta Was this translation helpful? Give feedback.
1 reply
-
I added the comma in #43743 . Maybe we should support spaces too as previously mentioned but at least the doc will be right for now. Thanks for taking the time to report it! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, everyone.
So, I was doing the
YOUR SECOND QUARKUS APPLICATION
tutorial when I reached section 3 and tried to install both panache and postgres extensions at the same time using mvn, however, I was not able to and received this error message running the command./mvnw quarkus:add-extension -Dextensions='hibernate-orm-panache jdbc-postgresql'
:My solution was installing one extension at a time.
./mvnw quarkus:add-extension -Dextensions='hibernate-orm-panache'
./mvnw quarkus:add-extension -Dextensions='jdbc-postgresql'
Is this method of installing multiple extension at once not working using maven?
Beta Was this translation helpful? Give feedback.
All reactions