Skip to content

Commit 84e5f63

Browse files
authored
Merge pull request #1 from networknt/master
updating from master
2 parents 1dd05c8 + 38d934e commit 84e5f63

File tree

4 files changed

+26
-18
lines changed

4 files changed

+26
-18
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
99

1010
### Changed
1111

12+
## 0.1.6 - 2017-04-03
13+
### Added
14+
15+
### Changed
16+
- Fixes #20 added default messages to empty messages on ValidatorTypeCode. Thanks @eskabetxe
17+
- Fixes #22 only check subschema if distinct from schema, and minor changes. Thanks @eskabetxe
18+
- Fixes #24 update dependencies versions. Thanks @eskabetxe
19+
1220
## 0.1.5 - 2017-03-25
1321
### Added
1422

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Add the following to your `pom.xml`:
4242
<dependency>
4343
<groupId>com.networknt</groupId>
4444
<artifactId>json-schema-validator</artifactId>
45-
<version>0.1.2</version>
45+
<version>0.1.5</version>
4646
</dependency>
4747
```
4848

pom.xml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<modelVersion>4.0.0</modelVersion>
2020
<groupId>com.networknt</groupId>
2121
<artifactId>json-schema-validator</artifactId>
22-
<version>0.1.5</version>
22+
<version>0.1.6</version>
2323
<description>A json schema validator that supports draft v4</description>
2424
<url>https://github.com/networknt/json-schema-validator</url>
2525
<name>JsonSchemaValidator</name>
@@ -65,14 +65,14 @@
6565
<properties>
6666
<java.version>1.8</java.version>
6767
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
68-
<version.jackson>2.8.2</version.jackson>
69-
<version.slf4j>1.7.21</version.slf4j>
70-
<version.common-lang>2.6</version.common-lang>
71-
<version.logback>1.1.7</version.logback>
68+
<version.jackson>2.8.7</version.jackson>
69+
<version.slf4j>1.7.25</version.slf4j>
70+
<version.common-lang3>3.5</version.common-lang3>
71+
<version.logback>1.2.3</version.logback>
7272
<version.junit>4.12</version.junit>
73-
<version.mockito>2.1.0-RC.1</version.mockito>
73+
<version.mockito>2.7.21</version.mockito>
7474
<version.hamcrest>1.3</version.hamcrest>
75-
<version.undertow>1.4.0.Final</version.undertow>
75+
<version.undertow>1.4.11.Final</version.undertow>
7676

7777
</properties>
7878

@@ -94,9 +94,9 @@
9494
<version>${version.slf4j}</version>
9595
</dependency>
9696
<dependency>
97-
<groupId>commons-lang</groupId>
98-
<artifactId>commons-lang</artifactId>
99-
<version>${version.common-lang}</version>
97+
<groupId>org.apache.commons</groupId>
98+
<artifactId>commons-lang3</artifactId>
99+
<version>${version.common-lang3}</version>
100100
</dependency>
101101

102102
<dependency>
@@ -156,7 +156,7 @@
156156
<plugin>
157157
<groupId>org.sonatype.plugins</groupId>
158158
<artifactId>nexus-staging-maven-plugin</artifactId>
159-
<version>1.6.7</version>
159+
<version>1.6.8</version>
160160
<extensions>true</extensions>
161161
<configuration>
162162
<serverId>ossrh</serverId>
@@ -201,7 +201,7 @@
201201
<plugin>
202202
<groupId>org.apache.maven.plugins</groupId>
203203
<artifactId>maven-compiler-plugin</artifactId>
204-
<version>2.5.1</version>
204+
<version>3.6.1</version>
205205
<configuration>
206206
<source>${java.version}</source>
207207
<target>${java.version}</target>
@@ -211,12 +211,12 @@
211211
<plugin>
212212
<groupId>org.apache.maven.plugins</groupId>
213213
<artifactId>maven-surefire-plugin</artifactId>
214-
<version>2.14</version>
214+
<version>2.19.1</version>
215215
<dependencies>
216216
<dependency>
217217
<groupId>org.apache.maven.surefire</groupId>
218218
<artifactId>surefire-junit47</artifactId>
219-
<version>2.14</version>
219+
<version>2.19.1</version>
220220
</dependency>
221221
</dependencies>
222222
</plugin>
@@ -226,7 +226,7 @@
226226
<plugin>
227227
<groupId>org.jacoco</groupId>
228228
<artifactId>jacoco-maven-plugin</artifactId>
229-
<version>0.7.4.201502262128</version>
229+
<version>0.7.9</version>
230230
<executions>
231231
<execution>
232232
<id>pre-unit-test</id>
@@ -275,7 +275,7 @@
275275
<plugin>
276276
<groupId>org.apache.maven.plugins</groupId>
277277
<artifactId>maven-gpg-plugin</artifactId>
278-
<version>1.5</version>
278+
<version>1.6</version>
279279
<executions>
280280
<execution>
281281
<id>sign-artifacts</id>

src/main/java/com/networknt/schema/BaseJsonValidator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.networknt.schema;
1818

1919
import com.fasterxml.jackson.databind.JsonNode;
20-
import org.apache.commons.lang.StringUtils;
20+
import org.apache.commons.lang3.StringUtils;
2121
import org.slf4j.Logger;
2222

2323
import java.net.MalformedURLException;

0 commit comments

Comments
 (0)