执行mvn install:install-file -Dfile=/path/to/aliyun-sdk-oss-2.9.3.jar -DgroupId=com.aliyun.oss -DartifactId=aliyun-sdk-oss -Dversion=2.9.3 -Dpackaging=jar 提示The specified file 'D:\path\to\aliyun-sdk-oss-2.9.3.jar' not exists
时间: 2023-12-06 10:04:51 浏览: 133
The error message is indicating that the specified file does not exist on the given path. Have you replaced "/path/to/aliyun-sdk-oss-2.9.3.jar" with the actual path to the file on your system? Make sure to replace it with the correct path to the file. If the file is located in the D drive, you need to replace "/path/to/" with "D:\".
For example, if the file is located in "D:\aliyun-sdk-oss-2.9.3.jar", you should use the following command:
```
mvn install:install-file -Dfile=D:\aliyun-sdk-oss-2.9.3.jar -DgroupId=com.aliyun.oss -DartifactId=aliyun-sdk-oss -Dversion=2.9.3 -Dpackaging=jar
```
Make sure to replace the file path and any other parameters with the correct values according to your system and project requirements.
阅读全文