From 6233b4fcf269e5067f575e5d655306eedb46b0b9 Mon Sep 17 00:00:00 2001 From: leadpony Date: Sat, 22 Dec 2018 13:24:18 +0900 Subject: [PATCH] Change version in README --- README.md | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 02e0a8ff..6968ccc8 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ the following two dependencies are all you need to add to your pom.xml. org.leadpony.justify justify - 0.9.0 + 0.9.1 @@ -42,12 +42,6 @@ Alternatively, the latter dependency can be replaced with other implementation such as [Apache Johnzon] as below. ```xml - - org.leadpony.justify - justify - 0.9.0 - - org.apache.johnzon johnzon-core @@ -55,7 +49,7 @@ such as [Apache Johnzon] as below. ``` -### Using with the Streaming API for JSON Processing +### Using with the Streaming API of JSON Processing ```java JsonValidationService service = JsonValidationService.newInstance(); @@ -76,7 +70,7 @@ try (JsonParser parser = service.createParser(path, schema, handler)) { } ``` -### Using with the Object Model API for JSON Processing +### Using with the Object Model API of JSON Processing ```java JsonValidationService service = JsonValidationService.newInstance(); @@ -158,11 +152,11 @@ try (JsonReader reader = service.createReader(path, schema, handler)) { ## Building from Source -The following tools are required to build this library. +The following tools are required to build this software. * [JDK 9] or higher * [Apache Maven] 3.6.0 or higher -The commands below build the library and install it into your local Maven repository. +The commands below build the software and install it into your local Maven repository. ```bash $ git clone https://github.com/leadpony/justify.git