2019-12-05 09:56:52 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-09 06:56:44 -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">
|
2019-10-31 21:43:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.baeldung</groupId>
|
|
|
|
<artifactId>json</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<name>json</name>
|
2019-12-05 09:56:52 -05:00
|
|
|
|
2019-10-31 21:43:47 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.everit.json</groupId>
|
|
|
|
<artifactId>org.everit.json.schema</artifactId>
|
|
|
|
<version>${everit.json.schema.version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2019-11-24 03:03:51 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.json</groupId>
|
|
|
|
<artifactId>json</artifactId>
|
|
|
|
<version>${json.version}</version>
|
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
<version>${gson.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
</dependency>
|
2019-12-05 09:56:52 -05:00
|
|
|
<dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
<groupId>javax.json.bind</groupId>
|
|
|
|
<artifactId>javax.json.bind-api</artifactId>
|
|
|
|
<version>${jsonb-api.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish</groupId>
|
|
|
|
<artifactId>javax.json</artifactId>
|
|
|
|
<version>${javax.version}</version>
|
|
|
|
</dependency>
|
2019-12-05 09:56:52 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse</groupId>
|
|
|
|
<artifactId>yasson</artifactId>
|
|
|
|
<version>${yasson.version}</version>
|
2019-11-23 10:01:40 -05:00
|
|
|
</dependency>
|
2019-12-05 09:56:52 -05:00
|
|
|
<!-- utils -->
|
2019-10-31 21:43:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-collections4</artifactId>
|
|
|
|
<version>${commons-collections4.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<everit.json.schema.version>1.4.1</everit.json.schema.version>
|
|
|
|
<jsonb-api.version>1.0</jsonb-api.version>
|
2019-11-23 10:01:40 -05:00
|
|
|
<yasson.version>1.0.1</yasson.version>
|
2019-12-05 09:56:52 -05:00
|
|
|
<json.version>20171018</json.version>
|
|
|
|
<gson.version>2.8.5</gson.version>
|
|
|
|
<javax.version>1.1.2</javax.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</properties>
|
|
|
|
|
2021-05-09 06:56:44 -04:00
|
|
|
</project>
|