67 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			1.8 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>com.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>
 | |
| 
 | |
| 		<!-- 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>
 | |
| 
 | |
| 	<build>
 | |
| 		<plugins>
 | |
| 			<plugin>
 | |
| 				<groupId>org.apache.maven.plugins</groupId>
 | |
|                 <artifactId>maven-compiler-plugin</artifactId>
 | |
|                 <version>${maven-compiler-plugin.version}</version>
 | |
|                 <configuration>
 | |
|                     <source>1.8</source>
 | |
|                     <target>1.8</target>
 | |
|                 </configuration>
 | |
| 			</plugin>
 | |
| 		</plugins>
 | |
| 	</build>
 | |
| 
 | |
| 	<properties>
 | |
| 		<!-- json-path -->
 | |
| 		<json-path.version>2.2.0</json-path.version>
 | |
| 
 | |
| 		<!-- Testing -->
 | |
| 		<junit.version>4.12</junit.version>
 | |
| 
 | |
| 		<!-- Logging -->
 | |
| 		<slf4j.version>1.7.21</slf4j.version>
 | |
| 		<logback.version>1.1.7</logback.version>
 | |
| 		
 | |
| 		<maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version>
 | |
| 	</properties>
 | |
| </project> |