Commit c1eda833 authored by jiangzeyin's avatar jiangzeyin
Browse files

travis

parent e35985db
Showing with 14 additions and 1 deletion
+14 -1
language: java
script: "mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V"
script: "mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V && mvn cobertura:cobertura"
notifications:
email: true
......
......@@ -12,6 +12,7 @@
![GitHub](https://img.shields.io/github/license/jiangzeyin/jpom.svg?style=flat)
![jdk](https://img.shields.io/badge/JDK-1.8+-green.svg)
[![travis](https://travis-ci.org/jiangzeyin/jpom.svg?branch=master)](https://travis-ci.org/jiangzeyin/jpom)
[![codecov](https://codecov.io/gh/jiangzeyin/jpom/branch/master/graph/badge.svg)](https://codecov.io/gh/jiangzeyin/jpom)
> Jpom采用SpringBoot开发web项目(前台采用layui)+websocket来统一管理,只要电脑能使用浏览器就ok
......
......@@ -74,6 +74,18 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
<configuration>
<formats>
<format>html</format>
<format>xml</format>
</formats>
<check/>
</configuration>
</plugin>
</plugins>
</build>
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment