我们在 linux 服务器上有一个远程存储库。当我在 linux 机器上工作时,使用 scp 访问存储库没有任何问题。我现在想在项目的 Windows 机器上工作,但我无法让远程存储库工作。
我遵循了这些说明:http ://ekawas.blogspot.com/2007/02/maven-windows-and-deploying-to-remote.html
我的 settings.xml 中有这个
<servers>
<server>
<id>ssh-repository</id>
<username>username</username>
<password>password</password>
<privateKey>C:\Dev\programs\ssh_private_key.ppk</privateKey>
<configuration>
<sshExecutable>plink</sshExecutable>
<scpExecutable>pscp</scpExecutable>
</configuration>
</server>
...
<profiles>
<profile>
<id>defaultProfile</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<repositories>
<repository>
<id>ssh-repository</id>
<name>SSH-Repository</name>
<url>scpexe://host:/path-to-rep</url>
</repository>
</repositories>
</profile>
</profiles>
当我只是在命令提示符下制作 pscp 时,我没有任何问题。当我尝试 mvn package 或 mvn clean 时,会出现以下错误:
Non-resolvable parent POM: Could not transfer artifact .... from/ro ssh-repository ...
我的 settings.xml 有问题吗?