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>
|
|
|
|
|
2017-05-09 16:37:43 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
2016-06-21 12:02:14 -04:00
|
|
|
<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>
|
2017-04-19 10:14:10 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
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
|
|
|
</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>
|
|
|
|
</properties>
|
2016-06-21 12:02:14 -04:00
|
|
|
</project>
|