Maven install transitive dependencies
问题 I have a project, and I need to install a library on Maven so that I can use it on said project. The problem I ran into is that said library, say libA, has a dependency itself, libB, which is also a third party one. I have added both to my local repository by using this code: mvn install:install-file -Dfile=VerBDConverter.jar -DgroupId=verbdconverter -DartifactId=verbdconverter -Dversion=1.00 -Dpackaging=jar -DgeneratePom=true Did the same for the lib 2. Problem is that, when I go to my