Skip to content

Commit

Permalink
Change version in README
Browse files Browse the repository at this point in the history
  • Loading branch information
leadpony committed Dec 22, 2018
1 parent ed6668e commit 6233b4f
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ the following two dependencies are all you need to add to your pom.xml.
<dependency>
<groupId>org.leadpony.justify</groupId>
<artifactId>justify</artifactId>
<version>0.9.0</version>
<version>0.9.1</version>
</dependency>

<dependency>
Expand All @@ -42,20 +42,14 @@ Alternatively, the latter dependency can be replaced with other implementation
such as [Apache Johnzon] as below.

```xml
<dependency>
<groupId>org.leadpony.justify</groupId>
<artifactId>justify</artifactId>
<version>0.9.0</version>
</dependency>

<dependency>
<groupId>org.apache.johnzon</groupId>
<artifactId>johnzon-core</artifactId>
<version>1.1.10</version>
</dependency>
```

### Using with the Streaming API for JSON Processing
### Using with the Streaming API of JSON Processing

```java
JsonValidationService service = JsonValidationService.newInstance();
Expand All @@ -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();
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 6233b4f

Please sign in to comment.