aboutsummaryrefslogtreecommitdiff
path: root/.travis
diff options
context:
space:
mode:
authorEvgeny Mandrikov <mandrikov@gmail.com>2015-09-06 00:38:18 +0200
committerEvgeny Mandrikov <mandrikov@gmail.com>2015-09-06 00:38:18 +0200
commitbc3519264290df926594bd130f849a34e776da00 (patch)
treefca015443e50d40f39ad8dcd359fed62d6b4dd4e /.travis
parent1026241b3ad7df98cc91d9d0abf04d1e83ff07fd (diff)
downloadjacoco-bc3519264290df926594bd130f849a34e776da00.tar.gz
Deploy snapshots from Travis
Diffstat (limited to '.travis')
-rw-r--r--.travis/settings.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/.travis/settings.xml b/.travis/settings.xml
new file mode 100644
index 00000000..0c27d509
--- /dev/null
+++ b/.travis/settings.xml
@@ -0,0 +1,21 @@
+<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
+ <servers>
+ <server>
+ <id>sonatype-nexus-snapshots</id>
+ <username>${env.SONATYPE_USERNAME}</username>
+ <password>${env.SONATYPE_PASSWORD}</password>
+ </server>
+ </servers>
+ <profiles>
+ <profile>
+ <id>default</id>
+ <properties>
+ <https.protocols>TLSv1</https.protocols>
+ </properties>
+ </profile>
+ </profiles>
+ <activeProfiles>
+ <activeProfile>default</activeProfile>
+ </activeProfiles>
+</settings>