| 
									
										
										
										
											2016-02-05 14:11:39 +07: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> | 
					
						
							| 
									
										
										
										
											2016-02-18 07:21:46 -06:00
										 |  |  | 	<groupId>com.baeldung</groupId> | 
					
						
							| 
									
										
										
										
											2016-02-05 14:11:39 +07:00
										 |  |  | 	<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> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-04 06:08:55 -06:00
										 |  |  | 	<build> | 
					
						
							|  |  |  | 		<plugins> | 
					
						
							|  |  |  | 			<plugin> | 
					
						
							|  |  |  | 				<groupId>org.apache.maven.plugins</groupId> | 
					
						
							|  |  |  |                 <artifactId>maven-compiler-plugin</artifactId> | 
					
						
							| 
									
										
										
										
											2016-12-11 00:51:42 +02:00
										 |  |  |                 <version>${maven-compiler-plugin.version}</version> | 
					
						
							| 
									
										
										
										
											2016-03-04 06:08:55 -06:00
										 |  |  |                 <configuration> | 
					
						
							|  |  |  |                     <source>1.8</source> | 
					
						
							|  |  |  |                     <target>1.8</target> | 
					
						
							|  |  |  |                 </configuration> | 
					
						
							|  |  |  | 			</plugin> | 
					
						
							|  |  |  | 		</plugins> | 
					
						
							|  |  |  | 	</build> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-05 14:11:39 +07:00
										 |  |  | 	<properties> | 
					
						
							|  |  |  | 		<!-- json-path --> | 
					
						
							| 
									
										
										
										
											2016-12-11 00:51:42 +02:00
										 |  |  | 		<json-path.version>2.2.0</json-path.version> | 
					
						
							| 
									
										
										
										
											2016-02-05 14:11:39 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		<!-- Testing --> | 
					
						
							|  |  |  | 		<junit.version>4.12</junit.version> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		<!-- Logging --> | 
					
						
							| 
									
										
										
										
											2016-12-11 00:51:42 +02:00
										 |  |  | 		<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> | 
					
						
							| 
									
										
										
										
											2016-02-05 14:11:39 +07:00
										 |  |  | 	</properties> | 
					
						
							|  |  |  | </project> |