55 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?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">
 | |
| 	<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>
 | |
| 
 | |
| 	<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>
 | |
| 
 | |
| 	<dependencies>
 | |
| 		<dependency>
 | |
| 			<groupId>junit</groupId>
 | |
| 			<artifactId>junit</artifactId>
 | |
| 			<version>${junit.version}</version>
 | |
| 			<scope>test</scope>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.hamcrest</groupId>
 | |
| 			<artifactId>hamcrest-all</artifactId>
 | |
| 			<version>${hamcrest-all.version}</version>
 | |
| 			<scope>test</scope>
 | |
| 		</dependency>
 | |
| 	</dependencies>
 | |
| 
 | |
| 	<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> | 
