Home | History | Annotate | Download | only in .travis
      1 <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      2   xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
      3   <servers>
      4     <server>
      5       <id>sonatype-nexus-snapshots</id>
      6       <username>${env.SONATYPE_USERNAME}</username>
      7       <password>${env.SONATYPE_PASSWORD}</password>
      8     </server>
      9   </servers>
     10   <profiles>
     11     <profile>
     12       <id>default</id>
     13       <properties>
     14         <https.protocols>TLSv1</https.protocols>
     15       </properties>
     16     </profile>
     17   </profiles>
     18   <activeProfiles>
     19     <activeProfile>default</activeProfile>
     20   </activeProfiles>
     21 </settings>
     22