0

I have two projects A and B. A is dependent on B.

Both projects are build using quarkus native build with maven. Quarkus Version is 2.7.4

I did the code changes in B but have not changed its pom version and kept the same version in A. The changes are not getting picked up in Project A during execution. But If I change the pom version of B and also change its version in A, then it gets reflected in A.

I am not able to understand why its happening. Can somebody help, please.

Yamini
  • 67
  • 1
  • 6

1 Answers1

0

Got the answer, Quarkus and maven won't look for changes to artifacts they already have cached unless the version ends with -SNAPSHOT

Yamini
  • 67
  • 1
  • 6
  • Your answer could be improved with additional supporting information. Please [edit] to add further details, such as citations or documentation, so that others can confirm that your answer is correct. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Jun 28 '22 at 16:10