-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running gradle quarkusDev fails in a multi-module Gradle project #23776
Comments
/cc @glefloch, @quarkusio/devtools |
Facing the same issue after I upgraded my Quarkus from 2.0.0.CR3 to 2.7.1.Final
Also, same as mentioned above: |
Thanks for reporting this @tabuyos. Could you try to remove configuration related settings in your main build.gradle (from line 47 to 55) ? |
@glefloch I have similar code as @tabuyos .
val apc = get("annotationProcessor") I start getting errors for Json annotations and lombok annotations that they are not found. |
yes, the issue comes from the fact that we add a dependency to the |
Describe the bug
I am learning the tutorial: GETTING STARTED WITH REACTIVE
When I run
gradle :quarkus-reactive:quarkusDev
in a multi-module gradle project, I get an exceptionWhen I comment out
implementation("io.quarkus:quarkus-hibernate-reactive-panache")
it works fineExpected behavior
This Quarkus plugin should work fine in other submodules
Actual behavior
this Quarkus plugin doesn't seem to be able to execute
compileJava
task in submoduleHow to Reproduce?
Here is my example code:
reproduce/quarkus at main · tabuyos/reproduce
Execute the
gradle :quarkus-reactive:quarkusDev
task in the quarkus directoryOutput of
uname -a
orver
Microsoft Windows [version 10.0.19043.1466]
Output of
java -version
openjdk version "16" 2021-03-16
GraalVM version (if different from Java)
No response
Quarkus version or git rev
2.7.1.Final
Build tool (ie. output of
mvnw --version
orgradlew --version
)Gradle 7.0.2
Additional information
No response
The text was updated successfully, but these errors were encountered: