Hello, I'm rather new to Maven and I couldn't find a solution to this little (IMHO) problem.
In my Eclipse workspace I have a Maven project for an OSGi bundle (a regular one, not an Eclipse plugin). It depends upon several artifacts (JAR libraries); I need one of them to be built from another Maven project in the workspace. When I rebuild the bundle, I'd like Maven to check whether the other artifact needs to be rebuilt too (i.e. because I edited some of its code), and if so, rebuild that one too. This way I can automatize some steps and avoid forgetting to rebuild the inner library. How to do that?
Thank you for any help!!
Enrico