Skip to content

Commit

Permalink
Dependencies updates
Browse files Browse the repository at this point in the history
  • Loading branch information
robertotru committed Feb 20, 2017
1 parent db9a01b commit ce5b57c
Show file tree
Hide file tree
Showing 5 changed files with 249 additions and 100 deletions.
24 changes: 21 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
language: java

sudo: false # faster builds

jdk:
- oraclejdk8
cache:
directories:
- $HOME/.m2

install:
true

before_script:
- pip install --user codecov
- curl http://www.jpm4j.org/install/script | sh

script:
- mvn -U -B -V test --fail-at-end -Dsource.skip=true -Dmaven.javadoc.skip=true

after_success:
- mvn clean test jacoco:report
- codecov --build "$TRAVIS_JOB_NUMBER-jdk8"

notifications:
email:
on_failure: change
41 changes: 20 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,37 +1,36 @@
embedded-redis
==============

[![Build Status](https://ci.appveyor.com/api/projects/status/github/kstyrc/embedded-redis?branch=master&svg=true)](https://ci.appveyor.com/project/kstyrc/embedded-redis) Windows
Redis embedded server for Java integration testing

Fork Notes
==============
This repository clones from [kstyrc](https://github.com/kstyrc/embedded-redis) original repository.
The aim is to release some long waiting fixes.

[![Build Status](https://travis-ci.org/kstyrc/embedded-redis.png?branch=master)](https://travis-ci.org/kstyrc/embedded-redis) Linux

Redis embedded server for Java integration testing
**Source Website:** *[github.com/ozimov/embedded-redis](http://github.com/ozimov/embedded-redis/)*<br />

**Latest Release:** *0.7.0* <br />
**Latest Artifact:** *it.ozimov:embedded-redis* <br />
**Continuous Integration:** <br />
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/it.ozimov/embedded-redis/badge.svg)](https://maven-badges.herokuapp.com/maven-central/ com.github.ozimov/spring-boot-email-core)
<br />
[![Build Status](https://travis-ci.org/ozimov/embedded-redis.svg?branch=master)](https://travis-ci.org/ozimov/embedded-redis)
[![codecov.io](https://codecov.io/github/ozimov/embedded-redis/coverage.svg?branch=master)](https://codecov.io/github/ozimov/embedded-redis?branch=master)
[![Codacy Badge](https://api.codacy.com/project/badge/grade/7a4364b93df6473fb18a597e900edceb)](https://www.codacy.com/app/roberto-trunfio/embedded-redis)

![codecov.io](https://codecov.io/github/ozimov/embedded-redis/branch.svg?branch=master)

Maven dependency
==============

Maven Central:
```xml
<dependency>
<groupId>com.github.kstyrc</groupId>
<artifactId>embedded-redis</artifactId>
<version>0.6</version>
</dependency>
```

Previous releases (before 0.6):
```xml
<repository>
<id>clojars.org</id>
<url>http://clojars.org/repo</url>
</repository>

...

<dependency>
<groupId>redis.embedded</groupId>
<groupId>it.ozimov</groupId>
<artifactId>embedded-redis</artifactId>
<version>0.5</version>
<version>0.7.0</version>
</dependency>
```

Expand Down
27 changes: 0 additions & 27 deletions appveyor.yml

This file was deleted.

Loading

0 comments on commit ce5b57c

Please sign in to comment.