From 41710f3dbd1b32f77f8faf01de1d82c786269738 Mon Sep 17 00:00:00 2001 From: oblonski Date: Thu, 26 Oct 2017 16:45:14 +0200 Subject: [PATCH] continuous deployment of snapshots --- .travis.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.travis.yml b/.travis.yml index b73e5fec..0f0f3708 100644 --- a/.travis.yml +++ b/.travis.yml @@ -47,6 +47,7 @@ install: true script: - mvn clean test verify -B + - mvn clean package notifications: email: @@ -55,3 +56,11 @@ notifications: cache: directories: - $HOME/.m2 + +deploy: + provider: script + script: "mvn deploy --settings .travis.settings.xml -DskipTests=true -B" + skip_cleanup: true + on: + branch: master +