在过去的几个小时里,我一直无法解决这个问题。请注意,我曾尝试寻找解决方案但无济于事。
无论如何,我的问题是我无法使用 Maven Wagon 插件创建目录。这是错误的片段以供参考。
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy (default-deploy) on project spigotsite:
Failed to deploy artifacts: Could not transfer artifact be.maximvdw:spigotsite:jar:0.0.12-20160523.053812-1 from/to public (ftp://***.***.***.***): Unable to create directory be -> [Help 1]
pom.xml 的片段
<distributionManagement>
<repository>
<uniqueVersion>false</uniqueVersion>
<id>public</id>
<name>Repository</name>
<url>ftp://***.***.***.***</url>
</repository>
</distributionManagement>
settings.xml 的片段
<servers>
<server>
<id>public</id>
<username>***</username>
<password>***</password>
</server>
</servers>
我已经验证我能够登录到 FTP 并创建一个目录。我给了 FTP 用户对该文件夹的完全写入权限,并测试了对文件夹本身的写入。我似乎忽略了一些东西,如果有人能指出我的错误,我将不胜感激。先感谢您。