Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added support of Redis 3+ #92

Open
wants to merge 21 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
44 changes: 22 additions & 22 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.2* <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/it.ozimov/embedded-redis)
<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.2</version>
</dependency>
```

Expand Down Expand Up @@ -77,10 +76,11 @@ Or even create simple redis.conf file from scratch:
RedisServer redisServer = RedisServer.builder()
.redisExecProvider(customRedisProvider)
.port(6379)
.setting("bind 127.0.0.1") // good for local development on Windows to prevent security popups
.slaveOf("locahost", 6378)
.setting("daemonize no")
.setting("appendonly no")
.setting("maxheap 128M")
.setting("maxmemory 128M")
.build();
```

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

This file was deleted.

Loading