File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
src/main/java/org/everit/json/schema/loader Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ Add the JitPack repository and the dependency to your `pom.xml` as follows:
46
46
<dependency >
47
47
<groupId >com.github.everit-org.json-schema</groupId >
48
48
<artifactId >org.everit.json.schema</artifactId >
49
- <version >1.12.3 </version >
49
+ <version >1.13.0 </version >
50
50
</dependency >
51
51
...
52
52
<repositories >
Original file line number Diff line number Diff line change 140
140
<dependency >
141
141
<groupId >com.github.everit-org.json-schema</groupId >
142
142
<artifactId >org.everit.json.schema</artifactId >
143
- <version >1.12.3 </version >
143
+ <version >1.13.0 </version >
144
144
<type >jar</type >
145
145
</dependency >
146
146
</oldVersion >
Original file line number Diff line number Diff line change @@ -48,7 +48,9 @@ public enum SpecificationVersion {
48
48
@ Override List <String > metaSchemaUrls () {
49
49
return Arrays .asList (
50
50
"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"
52
54
);
53
55
}
54
56
You can’t perform that action at this time.
0 commit comments