| 
									
										
										
										
											2021-09-28 05:58:14 +02:00
										 |  |  | <?xml version="1.0" encoding="UTF-8"?> | 
					
						
							|  |  |  | <project xmlns="http://maven.apache.org/POM/4.0.0" | 
					
						
							| 
									
										
										
										
											2021-11-08 02:45:45 +05:30
										 |  |  | 	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> | 
					
						
							|  |  |  | 	<artifactId>core-java-collections-maps-4</artifactId> | 
					
						
							|  |  |  | 	<version>0.1.0-SNAPSHOT</version> | 
					
						
							|  |  |  | 	<name>core-java-collections-maps-4</name> | 
					
						
							|  |  |  | 	<packaging>jar</packaging> | 
					
						
							| 
									
										
										
										
											2021-09-28 05:58:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-08 02:45:45 +05:30
										 |  |  | 	<parent> | 
					
						
							|  |  |  | 		<groupId>com.baeldung.core-java-modules</groupId> | 
					
						
							|  |  |  | 		<artifactId>core-java-modules</artifactId> | 
					
						
							|  |  |  | 		<version>0.0.1-SNAPSHOT</version> | 
					
						
							|  |  |  | 		<relativePath>../pom.xml</relativePath> | 
					
						
							|  |  |  | 	</parent> | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	<properties> | 
					
						
							|  |  |  | 	    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | 
					
						
							|  |  |  | 		<maven.compiler.source>1.8</maven.compiler.source> | 
					
						
							|  |  |  | 		<maven.compiler.target>1.8</maven.compiler.target> | 
					
						
							|  |  |  | 	</properties> | 
					
						
							| 
									
										
										
										
											2021-09-28 05:58:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-08 02:45:45 +05:30
										 |  |  | 	<dependencies> | 
					
						
							|  |  |  | 		<dependency> | 
					
						
							|  |  |  | 			<groupId>junit</groupId> | 
					
						
							|  |  |  | 			<artifactId>junit</artifactId> | 
					
						
							| 
									
										
										
										
											2021-11-08 13:45:41 +05:30
										 |  |  | 			<version>${junit.version}</version> | 
					
						
							| 
									
										
										
										
											2021-11-08 02:45:45 +05:30
										 |  |  | 			<scope>test</scope> | 
					
						
							|  |  |  | 		</dependency> | 
					
						
							|  |  |  | 		<dependency> | 
					
						
							|  |  |  | 			<groupId>org.hamcrest</groupId> | 
					
						
							|  |  |  | 			<artifactId>hamcrest-all</artifactId> | 
					
						
							| 
									
										
										
										
											2021-11-08 13:45:41 +05:30
										 |  |  | 			<version>${hamcrest-all.version}</version> | 
					
						
							| 
									
										
										
										
											2021-11-08 02:45:45 +05:30
										 |  |  | 			<scope>test</scope> | 
					
						
							|  |  |  | 		</dependency> | 
					
						
							|  |  |  | 	</dependencies> | 
					
						
							| 
									
										
										
										
											2021-09-28 05:58:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-08 02:45:45 +05:30
										 |  |  | 	<build> | 
					
						
							|  |  |  | 		<pluginManagement> | 
					
						
							|  |  |  | 			<plugins> | 
					
						
							|  |  |  | 				<plugin> | 
					
						
							|  |  |  | 					<groupId>org.apache.maven.plugins</groupId> | 
					
						
							|  |  |  | 					<artifactId>maven-surefire-plugin</artifactId> | 
					
						
							|  |  |  | 					<version>3.0.0-M5</version> | 
					
						
							|  |  |  | 					<configuration> | 
					
						
							|  |  |  | 						<!-- those tests are not made for CI purposes, but for manual testing --> | 
					
						
							|  |  |  | 						<groups>!performance</groups> | 
					
						
							|  |  |  | 					</configuration> | 
					
						
							|  |  |  | 				</plugin> | 
					
						
							|  |  |  | 			</plugins> | 
					
						
							|  |  |  | 		</pluginManagement> | 
					
						
							|  |  |  | 	</build> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | </project> |