diff --git a/README.md b/README.md index 0bde293..ce7cf3f 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ * Extensible (see the list of **plugins** below) * Heavily tested (**99% code coverage**) * Well [documented](http://cfg4j.org) - * Java 8+ required + * Java 7+ required # Usage Read [an article about configuration management using cfg4j](http://potocki.io/post/141230472743/configuration-management-for-distributed-systems). @@ -42,13 +42,13 @@ Explore the code of the [sample apps](https://github.com/cfg4j/cfg4j-sample-apps #### Gradle ```groovy dependencies { - compile group: "org.cfg4j", name:"cfg4j-core", version: "4.1.4" + compile group: "org.cfg4j", name:"cfg4j-core", version: "4.2.0" // For Consul integration - compile group: "org.cfg4j", name:"cfg4j-consul", version: "4.1.4" + compile group: "org.cfg4j", name:"cfg4j-consul", version: "4.2.0" // For git integration - compile group: "org.cfg4j", name:"cfg4j-git", version: "4.1.4" + compile group: "org.cfg4j", name:"cfg4j-git", version: "4.2.0" } ``` @@ -58,19 +58,19 @@ dependencies { org.cfg4j cfg4j-core - 4.1.4 + 4.2.0 org.cfg4j cfg4j-consul - 4.1.4 + 4.2.0 org.cfg4j cfg4j-git - 4.1.4 + 4.2.0 ```