2016-06-21 12:02:14 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.baeldung</groupId>
|
|
|
|
<artifactId>json</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.everit.json</groupId>
|
|
|
|
<artifactId>org.everit.json.schema</artifactId>
|
2016-12-10 17:51:42 -05:00
|
|
|
<version>${everit.json.schema.version}</version>
|
2016-06-21 12:02:14 -04:00
|
|
|
</dependency>
|
|
|
|
|
2016-07-25 08:31:25 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>fastjson</artifactId>
|
2016-12-10 17:51:42 -05:00
|
|
|
<version>${fastjson.version}</version>
|
2016-07-25 08:31:25 -04:00
|
|
|
</dependency>
|
|
|
|
|
2016-06-21 12:02:14 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2016-12-10 17:51:42 -05:00
|
|
|
<version>${junit.version}</version>
|
2016-06-21 12:02:14 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
2016-12-10 17:51:42 -05:00
|
|
|
<properties>
|
|
|
|
<everit.json.schema.version>1.4.1</everit.json.schema.version>
|
|
|
|
<fastjson.version>1.2.21</fastjson.version>
|
|
|
|
<junit.version>4.12</junit.version>
|
|
|
|
</properties>
|
2016-06-21 12:02:14 -04:00
|
|
|
</project>
|