I have a mavenized GWT project A, which depends on project B (mavenized GWT module).
When I modify project B (add a diagnostic message, for example), run mvn install
in B's directory and run project A, the changes in B are not propagated (the diagnostic message, which I added, does not appear in a log file).
mvn install
on B ends with success. The group, artifact ID and version of the dependency
tag in A's pom.xml
are correct.
What could cause the changes in B not be propagated to A?