添加jar包到本地Maven倉庫

Maven命令
官網給出的命令
mvn install:install-file -Dfile=<path-to-file> -DgroupId=<group-id> -DartifactId=<artifact-id> -Dversion=<version> -Dpackaging = < packaging >
實例:
mvn install:install-file -Dfile=F:\IdeaProjects\Projects\similarity\lib\lingpipe-4.1.2.jar -DgroupId=com.aliasi -DartifactId=lingpipe -Dversion=4.1.2 -Dpackaging=jar
命令運行條件

  • Maven環境
  • 在有pom.xml的文件夾下,否則可能出現如下錯誤:

[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.122 s
[INFO] Finished at: 2018-09-12T23:44:44+08:00
[INFO] ------------------------------------------------------------------------
[ERROR] The goal you specified requires a project to execute but there is no POM in this directory (F:\IdeaProjects\Projects\similarity\lib). Please verify you invoked Maven from the correct directory. -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MissingProjectException

- 參數最後加上引號,在上面實例命令中並沒有加,但實際情況卻是有可能發生如下錯誤:
[ERROR] Unknown lifecycle phase ".aliasi". You must specify a valid lifecycle phase or a goal in the format <plugin-prefix>:<goal> or <plugin-group-id>:<plugin-artifact-id>[:<plugin-version>]:<goal>. Available lifecycle phases are: validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy, pre-clean, clean, post-clean, pre-site, site, post-site, site-deploy. -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/LifecyclePhaseNotFoundException

解決方法:
mvn install:install-file -Dfile="F:\IdeaProjects\Projects\similarity\lib\lingpipe-4.1.2.jar" -DgroupId="com.aliasi" -DartifactId="lingpipe" -Dversion="4.1.2" -Dpackaging="jar"

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章