-
Notifications
You must be signed in to change notification settings - Fork 214
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
mvnd does not pick the BoM from the source tree #9
Comments
I think the problem is that something is kept in cache and not invalidated when the input has changed. I'll try to pinpoint the problem more precisely. |
The actual problem is that by default the maven |
What would be the best workaround? To kill the daemon? Or maybe there is a switch to restart the daemon? |
I'm working on implementing a |
…actor build, fixes apache#9
The $subj is just my theory to explain what just happened to me:
I added a version-less dependency
apt
into a Maven modulecamel-quarkus-platform-http-component
. I also addedapt
properly versioned into the dependencyManagement ofcamel-quarkus-bom
in the same source tree. Note thatcamel-quarkus-platform-http-component
importscamel-quarkus-bom
. Saved all. I am about to push the code to apache/camel-quarkus#201mvnd clean install -DskipTests
run from the top directory complained about theapt
version missing incamel-quarkus-platform-http-component
.Running the same goals with the stock Maven succeeded.
So I assume the smart builder is probably not linking
camel-quarkus-platform-http-component
as dependent oncamel-quarkus-bom
.The text was updated successfully, but these errors were encountered: