gpt4 book ai didi

java - mvn install local jar : Failed to execute goal org. apache.maven.plugins :maven-install-plugin. ..(是一个目录)出错 -> [帮助 1]

转载 作者:行者123 更新时间:2023-12-02 04:18:51 25 4
gpt4 key购买 nike

我正在尝试将本地 jar 安装到我的 Maven 项目中,我正在从我的项目文件夹运行此命令:

mvn install:install-file -Dfile= ~/Downloads/<jar_path> -DgroupId=<groupId> -DartifactId=<artifactId> -Dversion=<version> -Dpackaging=jar -DgeneratePom=false

我收到此错误:

Failed to execute goal org.apache.maven.plugins:maven-install-plugin:2.4:install-file (default-cli) on project my-project: Error installing artifact 'my-artifact': Failed to install artifact groupId:artifactId:jar:version: /Users/my-project-path (Is a directory) -> [Help 1]

最佳答案

您的命令中的 -Dfile= 之后有一个空格!

 mvn install:install-file -Dfile= ~/Downloads/<jar_path> -DgroupId=<groupId> -DartifactId=<artifactId> -Dversion=<version> -Dpackaging=jar -DgeneratePom=false

尝试

 mvn install:install-file -Dfile=~/Downloads/<jar_path> -DgroupId=<groupId> -DartifactId=<artifactId> -Dversion=<version> -Dpackaging=jar -DgeneratePom=false

关于java - mvn install local jar : Failed to execute goal org. apache.maven.plugins :maven-install-plugin. ..(是一个目录)出错 -> [帮助 1],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33012191/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com