diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index e1b11de6e6..026984411c 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -3,7 +3,7 @@ If you would like to contribute code you can do so through GitHub by forking the repository and sending a pull request. When submitting code, please make every effort to follow existing conventions and style in order to keep the code as readable as possible. -Formatting settings are provided for Eclipse in https://github.com/mp911de/lettuce/blob/master/formatting.xml +Formatting settings are provided for Eclipse in https://github.com/lettuce-io/lettuce-core/blob/master/formatting.xml ## Bugreports @@ -18,4 +18,4 @@ If you report a bug, please ensure to specify the following: By contributing your code, you agree to license your contribution under the terms of [Apache License 2.0] (http://www.apache.org/licenses/LICENSE-2.0). -All files are released with the Apache 2.0 license. \ No newline at end of file +All files are released with the Apache 2.0 license. diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 3ad4440d1a..5e62390719 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -7,10 +7,10 @@ logs. --> Make sure that: -- [ ] You have read the [contribution guidelines](https://github.com/mp911de/lettuce/blob/master/.github/CONTRIBUTING.md). +- [ ] You have read the [contribution guidelines](https://github.com/lettuce-io/lettuce-core/blob/master/.github/CONTRIBUTING.md). - [ ] You specify the lettuce version and environment so it's obvious which version is affected - [ ] You provide a reproducible test case (either descriptive of as JUnit test) if it's a bug or the expected behavior differs from the actual behavior. \ No newline at end of file +--> diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 1d1ad1830a..bad9b46841 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -3,10 +3,10 @@ Thank you for proposing a pull request. This template will guide you through the --> Make sure that: -- [ ] You have read the [contribution guidelines](https://github.com/mp911de/lettuce/blob/master/.github/CONTRIBUTING.md). -- [ ] You use the code formatters provided [here](https://github.com/mp911de/lettuce/blob/master/formatting.xml) and have them applied to your changes. Don’t submit any formatting related changes. +- [ ] You have read the [contribution guidelines](https://github.com/lettuce-io/lettuce-core/blob/master/.github/CONTRIBUTING.md). +- [ ] You use the code formatters provided [here](https://github.com/lettuce-io/lettuce-core/blob/master/formatting.xml) and have them applied to your changes. Don’t submit any formatting related changes. - [ ] You submit test cases (unit or integration tests) that back your changes. \ No newline at end of file +--> diff --git a/README.md b/README.md index 3d81c2b6ba..b1b60bc304 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ lettuce - Advanced Java Redis client =============================== -[![Build Status](https://travis-ci.org/mp911de/lettuce.svg)](https://travis-ci.org/mp911de/lettuce) [![Coverage Status](https://img.shields.io/coveralls/mp911de/lettuce.svg)](https://coveralls.io/r/mp911de/lettuce) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/biz.paluch.redis/lettuce/badge.svg)](https://maven-badges.herokuapp.com/maven-central/biz.paluch.redis/lettuce) +[![Build Status](https://travis-ci.org/lettuce-io/lettuce-core.svg)](https://travis-ci.org/lettuce-io/lettuce-core) [![Coverage Status](https://img.shields.io/coveralls/lettuce-io/lettuce-core.svg)](https://coveralls.io/r/lettuce-io/lettuce-core) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/biz.paluch.redis/lettuce/badge.svg)](https://maven-badges.herokuapp.com/maven-central/biz.paluch.redis/lettuce) Lettuce is a scalable thread-safe Redis client for synchronous, asynchronous and reactive usage. Multiple threads may share one connection if they avoid blocking and transactional @@ -11,31 +11,31 @@ Supports advanced Redis features such as Sentinel, Cluster, Pipelining, Auto-Rec This version of lettuce has been tested against the latest Redis source-build. -* [synchronous](https://github.com/mp911de/lettuce/wiki/Basic-usage), [asynchronous](https://github.com/mp911de/lettuce/wiki/Asynchronous-API-%284.0%29) and [reactive](https://github.com/mp911de/lettuce/wiki/Reactive-API-%284.0%29) usage -* [Redis Sentinel](https://github.com/mp911de/lettuce/wiki/Redis-Sentinel) -* [Redis Cluster](https://github.com/mp911de/lettuce/wiki/Redis-Cluster) -* [SSL](https://github.com/mp911de/lettuce/wiki/SSL-Connections) and [Unix Domain Socket](https://github.com/mp911de/lettuce/wiki/Unix-Domain-Sockets) connections -* [Streaming API](https://github.com/mp911de/lettuce/wiki/Streaming-API) -* [CDI](https://github.com/mp911de/lettuce/wiki/CDI-Support) and [Spring](https://github.com/mp911de/lettuce/wiki/Spring-Support) integration -* [Codecs](https://github.com/mp911de/lettuce/wiki/Codecs) (for UTF8/bit/JSON etc. representation of your data) -* multiple [Command Interfaces](https://github.com/mp911de/lettuce/wiki/Command-Interfaces-%284.0%29) +* [synchronous](https://github.com/lettuce-io/lettuce-core/wiki/Basic-usage), [asynchronous](https://github.com/lettuce-io/lettuce-core/wiki/Asynchronous-API-%284.0%29) and [reactive](https://github.com/lettuce-io/lettuce-core/wiki/Reactive-API-%284.0%29) usage +* [Redis Sentinel](https://github.com/lettuce-io/lettuce-core/wiki/Redis-Sentinel) +* [Redis Cluster](https://github.com/lettuce-io/lettuce-core/wiki/Redis-Cluster) +* [SSL](https://github.com/lettuce-io/lettuce-core/wiki/SSL-Connections) and [Unix Domain Socket](https://github.com/lettuce-io/lettuce-core/wiki/Unix-Domain-Sockets) connections +* [Streaming API](https://github.com/lettuce-io/lettuce-core/wiki/Streaming-API) +* [CDI](https://github.com/lettuce-io/lettuce-core/wiki/CDI-Support) and [Spring](https://github.com/lettuce-io/lettuce-core/wiki/Spring-Support) integration +* [Codecs](https://github.com/lettuce-io/lettuce-core/wiki/Codecs) (for UTF8/bit/JSON etc. representation of your data) +* multiple [Command Interfaces](https://github.com/lettuce-io/lettuce-core/wiki/Command-Interfaces-%284.0%29) -See the [Wiki](https://github.com/mp911de/lettuce/wiki) for more docs. +See the [Wiki](https://github.com/lettuce-io/lettuce-core/wiki) for more docs. Communication --------------- * Google Group: [lettuce-redis-client-users](https://groups.google.com/d/forum/lettuce-redis-client-users) or lettuce-redis-client-users@googlegroups.com -* [![Join the chat at https://gitter.im/mp911de/lettuce](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/mp911de/lettuce?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) -* [Github Issues](https://github.com/mp911de/lettuce/issues) +* [![Join the chat at https://gitter.im/lettuce-io/lettuce-core](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/lettuce-io/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) +* [GitHub Issues](https://github.com/lettuce-io/lettuce-core/issues) Documentation --------------- -* [Wiki](https://github.com/mp911de/lettuce/wiki) -* [Javadoc](http://redis.paluch.biz/docs/api/releases/latest/) +* [Wiki](https://github.com/lettuce-io/lettuce-core/wiki) +* [Javadoc](https://lettuce.io/lettuce-4/release/api/) Binaries/Download @@ -43,7 +43,7 @@ Binaries/Download Binaries and dependency information for Maven, Ivy, Gradle and others can be found at http://search.maven.org. -Releases of lettuce are available in the maven central repository. Take also a look at the [Download](https://github.com/mp911de/lettuce/wiki/Download) page in the [Wiki](https://github.com/mp911de/lettuce/wiki). +Releases of lettuce are available in the maven central repository. Take also a look at the [Download](https://github.com/lettuce-io/lettuce-core/wiki/Download) page in the [Wiki](https://github.com/lettuce-io/lettuce-core/wiki). Example for Maven: @@ -141,7 +141,7 @@ to the lowercase Redis command name. Complex commands with multiple modifiers that change the result type include the CamelCased modifier as part of the command name, e.g. zrangebyscore and zrangebyscoreWithScores. -See [Basic usage](https://github.com/mp911de/lettuce/wiki/Basic-usage) for further details. +See [Basic usage](https://github.com/lettuce-io/lettuce-core/wiki/Basic-usage) for further details. Asynchronous API ------------------------ @@ -158,7 +158,7 @@ set.get() == "OK"; get.get() == "value"; ``` -See [Asynchronous API](https://github.com/mp911de/lettuce/wiki/Asynchronous-API-%284.0%29) for further details. +See [Asynchronous API](https://github.com/lettuce-io/lettuce-core/wiki/Asynchronous-API-%284.0%29) for further details. Reactive API ------------------------ @@ -174,7 +174,7 @@ set.subscribe(); get.toBlocking().single() == "value"; ``` -See [Reactive API](https://github.com/mp911de/lettuce/wiki/Reactive-API-%284.0%29) for further details. +See [Reactive API](https://github.com/lettuce-io/lettuce-core/wiki/Reactive-API-%284.0%29) for further details. Pub/Sub ------- @@ -194,7 +194,7 @@ are configured using a ```Makefile```. All tests run against Redis branch 3.0 To build: ``` -$ git clone https://github.com/mp911de/lettuce.git +$ git clone https://github.com/lettuce-io/lettuce-core.git $ cd lettuce/ $ make prepare ssl-keys $ make test @@ -209,17 +209,17 @@ $ make test Bugs and Feedback ----------- -For bugs, questions and discussions please use the [Github Issues](https://github.com/mp911de/lettuce/issues). +For bugs, questions and discussions please use the [GitHub Issues](https://github.com/lettuce-io/lettuce-core/issues). License ------- -* [Apache License 2.0] (http://www.apache.org/licenses/LICENSE-2.0) +* [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0) * Fork of https://github.com/wg/lettuce Contributing ------- Github is for social coding: if you want to write code, I encourage contributions through pull requests from forks of this repository. -Create Github tickets for bugs and new features and comment on the ones that you are interested in and take a look into [CONTRIBUTING.md](https://github.com/mp911de/lettuce/blob/master/.github/CONTRIBUTING.md) +Create Github tickets for bugs and new features and comment on the ones that you are interested in and take a look into [CONTRIBUTING.md](https://github.com/lettuce-io/lettuce-core/blob/master/.github/CONTRIBUTING.md) diff --git a/formatting.xml b/formatting.xml index ff57cdcb77..4128eb0641 100644 --- a/formatting.xml +++ b/formatting.xml @@ -1,6 +1,6 @@ - + diff --git a/pom.xml b/pom.xml index def4cc05ef..4ec663b696 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ jar lettuce - http://github.com/mp911de/lettuce/wiki + https://github.com/lettuce-io/lettuce-core/wiki Advanced and thread-safe Java Redis client for synchronous, asynchronous, and reactive usage. Supports Cluster, Sentinel, Pipelining, Auto-Reconnect, Codecs and much more. @@ -30,12 +30,12 @@ Travis CI - https://travis-ci.org/mp911de/lettuce + https://travis-ci.org/lettuce-io/lettuce-core Github - https://github.com/mp911de/lettuce/issues + https://github.com/lettuce-io/lettuce-core/issues @@ -64,9 +64,9 @@ - scm:git:https://github.com/mp911de/lettuce.git - scm:git:https://github.com/mp911de/lettuce.git - http://github.com/mp911de/lettuce + scm:git:https://github.com/lettuce-io/lettuce-core.git + scm:git:https://github.com/lettuce-io/lettuce-core.git + http://github.com/lettuce-io/lettuce-core HEAD @@ -657,20 +657,6 @@ - - org.apache.maven.plugins - maven-scm-publish-plugin - 1.1 - - gh-pages - ${project.build.directory}/site - ${github.site.upload.skip} - true - scm:git:ssh://git@github.com/mp911de/redis.paluch.biz.git - apidocs/** - - - org.apache.maven.plugins maven-shade-plugin