Skip to content
This repository has been archived by the owner on Jun 19, 2019. It is now read-only.

Commit

Permalink
Merge pull request #2 in MINT/java-checkout from MINT-1581_adding_bui…
Browse files Browse the repository at this point in the history
…ld_status_images to v1.1

* commit '33f5037b2ff538fd6f5c3bc5c85cc2303bf28ada':
  Adding travis and coveralls
  • Loading branch information
Christer Gustavsson committed May 9, 2014
2 parents b87b074 + 33f5037 commit 6f67738
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 11 deletions.
13 changes: 13 additions & 0 deletions .travis.yml
@@ -0,0 +1,13 @@
language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
- openjdk6

branches:
only:
- /^v\d\.\d/

after_success:
- mvn clean cobertura:cobertura coveralls:cobertura
2 changes: 2 additions & 0 deletions README.md
@@ -1,4 +1,6 @@
## Klarna Checkout Java library
[![Build Status](https://travis-ci.org/klarna/kco_java.svg?branch=v1.1)](https://travis-ci.org/klarna/kco_java) [![Coverage Status](https://coveralls.io/repos/klarna/kco_java/badge.png?branch=v1.1)](https://coveralls.io/r/klarna/kco_java?branch=v1.1)

Klarna Checkout is a revolutionary new payment solution that is changing the way
people shop online. First, consumers verify their purchase with a minimal
amount of information through intelligent identification, securing your order
Expand Down
27 changes: 16 additions & 11 deletions pom.xml
Expand Up @@ -57,17 +57,6 @@

<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<formats>
<format>html</format>
<format>xml</format>
</formats>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
Expand Down Expand Up @@ -138,6 +127,22 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<formats>
<format>html</format>
<format>xml</format>
</formats>
</configuration>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>2.2.0</version>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 6f67738

Please sign in to comment.