Skip to content

Commit

Permalink
coveralls
Browse files Browse the repository at this point in the history
  • Loading branch information
Yegor Bugayenko committed Dec 22, 2015
1 parent 70cbd09 commit 4745e54
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -4,7 +4,7 @@
[![DevOps By Rultor.com](http://www.rultor.com/b/yegor256/thindeck)](http://www.rultor.com/p/yegor256/thindeck)

[![Build Status](https://travis-ci.org/yegor256/thindeck.svg?branch=master)](https://travis-ci.org/yegor256/thindeck)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.thindeck/thideck/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.thindeck/thindeck)
[![Coverage Status](https://coveralls.io/repos/yegor256/thindeck/badge.svg?branch=__rultor&service=github)](https://coveralls.io/github/yegor256/thindeck?branch=__rultor)

[Thindeck.com](http://www.thindeck.com) is a web hosting that deploys itself.

Expand Down
42 changes: 42 additions & 0 deletions pom.xml
Expand Up @@ -631,6 +631,48 @@
</plugins>
</build>
</profile>
<profile>
<id>coveralls</id>
<activation>
<file><exists>pom.xml</exists></file>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<executions>
<execution>
<phase>site</phase>
<goals>
<goal>cobertura</goal>
</goals>
<configuration>
<format>xml</format>
<maxmem>256m</maxmem>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>4.1.0</version>
<executions>
<execution>
<phase>site</phase>
<goals>
<goal>report</goal>
</goals>
<configuration>
<repoToken>${coveralls.token}</repoToken>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>qulice</id>
<dependencies>
Expand Down

0 comments on commit 4745e54

Please sign in to comment.