Maven / Maven Interview questions
How do I install a 3rd party jar into the Maven repository?
Use the below command to install external dependency into the maven repository.
mvn install:install-file -Dfile=<path-to-file> -DgroupId=<group-id> \ -DartifactId=<artifact-id> -Dversion=<version> -Dpackaging=<packaging>
More Related questions...