Skip to content
Open
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ before_install:
- export M2_HOME=$PWD/apache-maven-3.6.0
- export PATH=$M2_HOME/bin:$PATH
script:
- mvn install
- mvn scoverage:report
cache:
directories:
- .autoconf
Expand All @@ -23,3 +23,5 @@ jdk:
notifications:
email:
- ops@acinq.fr
after_success:
- bash <(curl -s https://codecov.io/bash)
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
![Eclair Logo](.readme/logo.png)

[![Build Status](https://travis-ci.org/ACINQ/eclair.svg?branch=master)](https://travis-ci.org/ACINQ/eclair)
[![Build Status](https://travis-ci.org/araspitzu/eclair.svg?branch=master)](https://travis-ci.org/araspitzu/eclair)
[![codecov](https://codecov.io/gh/araspitzu/eclair/branch/master/graph/badge.svg)](https://codecov.io/gh/araspitzu/eclair)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](LICENSE)
[![Gitter chat](https://img.shields.io/badge/chat-on%20gitter-red.svg)](https://gitter.im/ACINQ/eclair)

Expand All @@ -24,7 +25,7 @@ Please see the latest [release note](https://github.com/ACINQ/eclair/releases) f

## Overview

![Eclair Demo](.readme/screen-1.png)
![Eclair Demo](.readme/screen-1.png)```

## JSON API

Expand Down
10 changes: 9 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<scala.version>2.11.12</scala.version>
<scala.version.short>2.11</scala.version.short>
<akka.version>2.4.20</akka.version>
<akka.http.version>10.0.11</akka.http.version>
<akka.http.version>10.1.8</akka.http.version>
<sttp.version>1.3.9</sttp.version>
<bitcoinlib.version>0.11</bitcoinlib.version>
<guava.version>24.0-android</guava.version>
Expand Down Expand Up @@ -228,6 +228,14 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.scoverage</groupId>
<artifactId>scoverage-maven-plugin</artifactId>
<version>1.4.0-M5</version>
<configuration>
<scalaVersion>${scala.version}</scalaVersion>
</configuration>
</plugin>
</plugins>
</build>

Expand Down