Hi,
I'm having problems getting
maven 2.0.9 deploy goal to work over ssh. Every time I trigger mvn deploy I'm being asked to provide password (about 6 times for each deploy). The client pc is a windows XP machine and the repository is running on a linux server. My settings.xml looks like this
<server>
<id>snapshots<id>
<username>tester</username>
<password>12345</password>
</server>
and my pom.xml has the following entry
<distributionManagement>
<snapshotRepository>
<id>snapshots</id>
<name>Snapshot</name>
<url>
scp://192.168.1.3/var/www/repo/snapshots</url>
</snapshotRepository>
</distributionManagement>
Unfortunately I haven't got direct control over the server so I don't really know how ssh is configured (if the problem is on that end). I ran a similar
test at home where the client pc was a winXP and I installed a default installation of openSSH on a debian linux box without changing any settings. I didn't have any problems running mvn deploy from the client machine which makes me wonder if something needs to be configured on the server side.
Thanks
S