2020-01-23 11:19:54 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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">
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>json-2</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.jsoniter</groupId>
|
|
|
|
<artifactId>jsoniter</artifactId>
|
|
|
|
<version>${jsoniter.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>${junit.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
|
|
|
<version>${assertj-core.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-03-17 10:30:46 -04:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.moshi</groupId>
|
|
|
|
<artifactId>moshi</artifactId>
|
|
|
|
<version>${moshi.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.moshi</groupId>
|
|
|
|
<artifactId>moshi-adapters</artifactId>
|
|
|
|
<version>${moshi.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
2020-07-07 07:18:10 -04:00
|
|
|
<version>${commons-lang3.version}</version>
|
2020-03-17 10:30:46 -04:00
|
|
|
</dependency>
|
2020-01-23 11:19:54 -05:00
|
|
|
</dependencies>
|
|
|
|
<properties>
|
|
|
|
<jsoniter.version>0.9.23</jsoniter.version>
|
|
|
|
<assertj-core.version>3.11.1</assertj-core.version>
|
2020-03-17 10:30:46 -04:00
|
|
|
<moshi.version>1.9.2</moshi.version>
|
2020-07-07 07:18:10 -04:00
|
|
|
<commons-lang3.version>3.9</commons-lang3.version>
|
2020-01-23 11:19:54 -05:00
|
|
|
</properties>
|
|
|
|
</project>
|