Skip to content

Commit 958b150

Browse files
author
Bence Erős
committed
2 parents dffefeb + 8e74633 commit 958b150

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Add the JitPack repository and the dependency to your `pom.xml` as follows:
4646
<dependency>
4747
<groupId>com.github.everit-org.json-schema</groupId>
4848
<artifactId>org.everit.json.schema</artifactId>
49-
<version>1.12.3</version>
49+
<version>1.13.0</version>
5050
</dependency>
5151
...
5252
<repositories>

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
<dependency>
141141
<groupId>com.github.everit-org.json-schema</groupId>
142142
<artifactId>org.everit.json.schema</artifactId>
143-
<version>1.12.3</version>
143+
<version>1.13.0</version>
144144
<type>jar</type>
145145
</dependency>
146146
</oldVersion>

core/src/main/java/org/everit/json/schema/loader/SpecificationVersion.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ public enum SpecificationVersion {
4848
@Override List<String> metaSchemaUrls() {
4949
return Arrays.asList(
5050
"http://json-schema.org/draft-04/schema",
51-
"https://json-schema.org/draft-04/schema"
51+
"https://json-schema.org/draft-04/schema",
52+
"http://json-schema.org/schema",
53+
"https://json-schema.org/schema"
5254
);
5355
}
5456

0 commit comments

Comments
 (0)