61 lines
1.6 KiB
XML
61 lines
1.6 KiB
XML
<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-path</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<name>json-path</name>
|
|
|
|
<dependencies>
|
|
<!-- json-path -->
|
|
<dependency>
|
|
<groupId>com.jayway.jsonpath</groupId>
|
|
<artifactId>json-path</artifactId>
|
|
<version>${json-path.version}</version>
|
|
</dependency>
|
|
|
|
<!-- utilities -->
|
|
<dependency>
|
|
<groupId>joda-time</groupId>
|
|
<artifactId>joda-time</artifactId>
|
|
<version>${joda-time.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Testing -->
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>${junit.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- Logging -->
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
<version>${logback.version}</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<properties>
|
|
<!-- json-path -->
|
|
<json-path.version>2.1.0</json-path.version>
|
|
|
|
<!-- utilities -->
|
|
<joda-time.version>2.9.2</joda-time.version>
|
|
|
|
<!-- Testing -->
|
|
<junit.version>4.12</junit.version>
|
|
|
|
<!-- Logging -->
|
|
<slf4j.version>1.7.14</slf4j.version>
|
|
<logback.version>1.1.3</logback.version>
|
|
</properties>
|
|
</project> |