mvn install:install-file -DgroupId={net.java.jna} -DartifactId={jna} -Dversion={1.0.0} -Dfile={C:\Users\admin\Desktop\view_code_pc\8-LinuxClientDemo\jna.jar} -Dpackaging=jar ERROR] The specified file 'C:\Users\admin\Desktop\view_code_pc\8-LinuxClientDemo\{C:\Users\admin\Desktop\view_code_pc\8-LinuxClientDemo\jna.jar}' not exists
时间: 2023-07-06 14:40:00 浏览: 111
mvn install:install-file -Dfile
5星 · 资源好评率100%
这个错误提示显示了一个错误的路径,它可能是因为您在命令行中错误地使用了 {} 符号。请检查您的命令行,确保您正确地引用了 JNA 的路径。例如,如果您想在本地 Maven 仓库中安装 jna.jar 包,您应该使用以下命令:
```sh
mvn install:install-file -DgroupId=net.java.dev.jna -DartifactId=jna -Dversion=5.6.0 -Dfile=C:\Users\admin\Desktop\view_code_pc\8-LinuxClientDemo\jna.jar -Dpackaging=jar
```
请注意,您不需要在命令行中使用 {} 符号。如果您在命令行中使用了 {} 符号,请将其删除并重新运行命令。
阅读全文