We have several third-party lib jars, i would like to deploy to Artifactory with dependent jars!
Hence, when third party jar is referenced, all the dependent jars will be downloaded automatically by maven?
for example, xxy-company-api-9.0.jar, this jar may require abc-9.1.jar, commons-lang-1.0.jar etc. When POM references xxy-company artifact, would it should automatically get all dependent jars. Is it possible? how?
NOTE
we have third party JARs by themselves, we do not have source code projects associated with these jars. We get these jars from vendors, providers or other companies. When we receive these jars it comes along with dependent jars etc.
Currently, we load all these jars into libs-release-local. And our project POM have to reference main jar and each of the dependent jar into it.
Question: Is it possible to specify only main jar from repository, and maven will seek all dependent jars from Artifactory automatically without explicit specifying into POM???
i am looking into command mvn install:install-file how to specify dependent jars for install file?