| 
									
										
										
										
											2017-01-03 17:47:21 +00: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> | 
					
						
							|  |  |  | 	<groupId>com.baeldung</groupId> | 
					
						
							|  |  |  | 	<artifactId>algorithms</artifactId> | 
					
						
							|  |  |  | 	<version>0.0.1-SNAPSHOT</version> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<properties> | 
					
						
							|  |  |  | 		<junit.version>4.12</junit.version> | 
					
						
							|  |  |  | 		<maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version> | 
					
						
							|  |  |  | 		<exec-maven-plugin.version>1.5.0</exec-maven-plugin.version> | 
					
						
							|  |  |  | 	</properties> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<dependencies> | 
					
						
							|  |  |  | 		<dependency> | 
					
						
							|  |  |  | 			<groupId>junit</groupId> | 
					
						
							|  |  |  | 			<artifactId>junit</artifactId> | 
					
						
							|  |  |  | 			<version>${junit.version}</version> | 
					
						
							|  |  |  | 			<scope>test</scope> | 
					
						
							|  |  |  | 		</dependency> | 
					
						
							|  |  |  | 	</dependencies> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<build> | 
					
						
							|  |  |  | 		<defaultGoal>install</defaultGoal> | 
					
						
							|  |  |  | 		<pluginManagement> | 
					
						
							|  |  |  | 			<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> | 
					
						
							|  |  |  | 				<plugin> | 
					
						
							|  |  |  | 					<groupId>org.codehaus.mojo</groupId> | 
					
						
							|  |  |  | 					<artifactId>exec-maven-plugin</artifactId> | 
					
						
							|  |  |  | 					<version>${exec-maven-plugin.version}</version> | 
					
						
							|  |  |  | 				</plugin> | 
					
						
							|  |  |  | 			</plugins> | 
					
						
							|  |  |  | 		</pluginManagement> | 
					
						
							|  |  |  | 	</build> | 
					
						
							| 
									
										
										
										
											2017-02-20 22:17:08 +00:00
										 |  |  | 	<reporting> | 
					
						
							|  |  |  | 		<plugins> | 
					
						
							|  |  |  | 			<plugin> | 
					
						
							|  |  |  | 				<groupId>org.codehaus.mojo</groupId> | 
					
						
							|  |  |  | 				<artifactId>cobertura-maven-plugin</artifactId> | 
					
						
							|  |  |  | 				<version>2.7</version> | 
					
						
							|  |  |  | 				<configuration> | 
					
						
							|  |  |  | 					<instrumentation> | 
					
						
							|  |  |  | 						<ignores> | 
					
						
							|  |  |  | 							<ignore>com/baeldung/algorithms/dijkstra/*</ignore> | 
					
						
							|  |  |  | 						</ignores> | 
					
						
							|  |  |  | 						<excludes> | 
					
						
							|  |  |  | 							<exclude>com/baeldung/algorithms/dijkstra/*</exclude> | 
					
						
							|  |  |  | 						</excludes> | 
					
						
							|  |  |  | 					</instrumentation> | 
					
						
							|  |  |  | 				</configuration> | 
					
						
							|  |  |  | 			</plugin> | 
					
						
							|  |  |  | 		</plugins> | 
					
						
							|  |  |  | 	</reporting> | 
					
						
							|  |  |  | </project> |