File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -4,12 +4,24 @@ JSON Schema Validator
4
4
This project is an implementation of the [ JSON Schema Core Draft v4] ( http://json-schema.org/latest/json-schema-core.html ) specification.
5
5
It uses the [ org.json API] ( http://www.json.org/java/ ) for representing JSON data.
6
6
7
+ Maven installation
8
+ ------------------
9
+ Add the following to your ` pom.xml ` :
10
+
11
+ ``` xml
12
+ <dependency >
13
+ <groupId >org.everit.json</groupId >
14
+ <artifactId >org.everit.json.schema</artifactId >
15
+ <version >1.0.0</version >
16
+ </dependency >
17
+ ```
18
+
7
19
Quickstart
8
20
----------
9
21
10
22
``` java
11
- import org.everit.jsonvalidator .Schema ;
12
- import org.everit.jsonvalidator .loader.SchemaLoader ;
23
+ import org.everit.json.schema .Schema ;
24
+ import org.everit.json.schema .loader.SchemaLoader ;
13
25
import org.json.JSONObject ;
14
26
import org.json.JSONTokener ;
15
27
// ...
You can’t perform that action at this time.
0 commit comments