简体   繁体   English

根据maven的官方教程,将外部jar安装到本地存储库,但失败了

[英]install a external jar to local repository according to maven's official tutorial,but failed

the command I used(according to maven's official tutorial: maven ): 我使用的命令(根据maven的官方教程: maven ):

mvn install:install-file -Dfile=algs4-1.0.4.jar -DgroupID=edu.princeton.cs -DartifactID=algs4 -Dversion=1.0.4 -Dpackaging=jar

the error info told groupID and artifactID are missing,so I try to modify the command: 错误信息告诉groupIDartifactID丢失,所以我尝试修改命令:

mvn install:install-file -Dfile=algs4-1.0.4.jar -groupID=edu.princeton.cs -artifactID=algs4 -Dversion=1.0.4 -Dpackaging=jar

you know,that's even worse. 你知道,那更糟。

I also try some solution from some answers here,they don't work either. 我也从这里的一些答案尝试一些解决方案,它们也不起作用。


  • expected result is,you know,install the jar. 你知道,预期的结果是安装jar。
  • actual results is: 实际结果是:
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------< org.apache.maven:standalone-pom >-------------------
[INFO] Building Maven Stub Project (No POM) 1
[INFO] --------------------------------[ pom ]---------------------------------
[INFO]
[INFO] --- maven-install-plugin:2.4:install-file (default-cli) @ standalone-pom ---
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  0.460 s
[INFO] Finished at: 2019-04-09T00:23:39+08:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-install-plugin:2.4:install-file (default-cli) on project standalone-pom: The artifact information is incomplete or not valid:
[ERROR]   [0]  'groupId' is missing.
[ERROR]   [1]  'artifactId' is missing.
[ERROR]
[ERROR] -> [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/MojoExecutionException

拼错了groupIdartifactId作为groupIDartifactID

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM