.travis.settings.xml 754 B

123456789101112131415161718
  1. <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
  4. http://maven.apache.org/xsd/settings-1.0.0.xsd">
  5. <servers>
  6. <server>
  7. <id>ssh-maven-travis</id>
  8. <username>${env.REPOUSER}</username>
  9. <privateKey>${user.home}/.ssh/id_rsa</privateKey>
  10. <configuration>
  11. <strictHostKeyChecking>no</strictHostKeyChecking>
  12. <preferredAuthentications>publickey,password</preferredAuthentications>
  13. <interactive>false</interactive>
  14. </configuration>
  15. </server>
  16. </servers>
  17. </settings>