java - How to add local jar files to a Maven project? -


how add local jar files (not yet part of maven repository) directly in project's library sources?

install jar local maven repository follows:

mvn install:install-file    -dfile=<path-to-file>    -dgroupid=<group-id>    -dartifactid=<artifact-id>    -dversion=<version>    -dpackaging=<packaging>    -dgeneratepom=true  where: <path-to-file>  path file load    <group-id>      group file should registered under    <artifact-id>   artifact name file    <version>       version of file    <packaging>     packaging of file e.g. jar 

reference


Comments

Popular posts from this blog

javascript - Enclosure Memory Copies -

php - Replacing tags in braces, even nested tags, with regex -