How to check maven dependency compatibility
问题 I'm trying to figure out if it is possible to check whether a maven dependency is still compatible in the configured configuration of a project. Here is my Test setup: There are 3 projects. Child-A , Child-B , Child-C . Child-A is available in 2 Version which are not compatible to each other. Version 0.0.1-SNAPSHOT has a method public void myMethod(String oneParameter) Version 0.0.2-SNAPSHOT changes this method to public void myMethod(String oneParameter, String secondParameter) Child-B has a