From d44bbb4fe2a6852726b81ed015b9bb8d5575c8a6 Mon Sep 17 00:00:00 2001 From: "Yangkai.Shen" <237497819@qq.com> Date: Thu, 25 Apr 2019 10:40:34 +0800 Subject: [PATCH] =?UTF-8?q?:construction=5Fworker:=20=E6=B7=BB=E5=8A=A0=20?= =?UTF-8?q?CI=20=E6=9E=84=E5=BB=BA=E5=88=B0=E7=B3=BB=E7=BB=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .travis.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..e7bb9d0 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,15 @@ +# 语言 +language: java +# 执行脚本 +script: "mvn clean package -DskipTests=true -Dmaven.javadoc.skip=true -B -V" +# 通知 +notifications: + email: + recipients: + - 237497819@qq.com + on_success: always # default: change + on_failure: always # default: always +# 缓存 +cache: + directories: + - '$HOME/.m2/repository'