| 
									
										
										
										
											2016-10-24 03:45:07 +02:00
										 |  |  | <?xml version="1.0" encoding="UTF-8"?> | 
					
						
							| 
									
										
										
										
											2017-05-12 20:32:54 +02: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-10-24 03:45:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-12 20:32:54 +02:00
										 |  |  | 	<artifactId>front-controller</artifactId> | 
					
						
							|  |  |  | 	<packaging>war</packaging> | 
					
						
							| 
									
										
										
										
											2016-10-24 03:45:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-12 20:32:54 +02:00
										 |  |  | 	<parent> | 
					
						
							|  |  |  | 		<artifactId>patterns-parent</artifactId> | 
					
						
							|  |  |  | 		<groupId>com.baeldung.patterns</groupId> | 
					
						
							|  |  |  | 		<version>1.0.0-SNAPSHOT</version> | 
					
						
							|  |  |  | 		<relativePath>..</relativePath> | 
					
						
							|  |  |  | 	</parent> | 
					
						
							| 
									
										
										
										
											2016-10-24 03:45:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-12 20:32:54 +02:00
										 |  |  | 	<dependencies> | 
					
						
							|  |  |  | 		<dependency> | 
					
						
							|  |  |  | 			<groupId>javax.servlet</groupId> | 
					
						
							|  |  |  | 			<artifactId>javax.servlet-api</artifactId> | 
					
						
							|  |  |  | 		</dependency> | 
					
						
							|  |  |  | 	</dependencies> | 
					
						
							| 
									
										
										
										
											2016-10-24 03:45:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-12 20:32:54 +02:00
										 |  |  | 	<build> | 
					
						
							|  |  |  | 		<plugins> | 
					
						
							|  |  |  | 			<plugin> | 
					
						
							|  |  |  | 				<groupId>org.apache.maven.plugins</groupId> | 
					
						
							|  |  |  | 				<artifactId>maven-compiler-plugin</artifactId> | 
					
						
							|  |  |  | 			</plugin> | 
					
						
							|  |  |  | 			<plugin> | 
					
						
							|  |  |  | 				<groupId>org.apache.maven.plugins</groupId> | 
					
						
							|  |  |  | 				<artifactId>maven-war-plugin</artifactId> | 
					
						
							|  |  |  | 			</plugin> | 
					
						
							|  |  |  | 			<plugin> | 
					
						
							|  |  |  | 				<groupId>org.eclipse.jetty</groupId> | 
					
						
							|  |  |  | 				<artifactId>jetty-maven-plugin</artifactId> | 
					
						
							|  |  |  | 				<configuration> | 
					
						
							|  |  |  | 					<webApp> | 
					
						
							|  |  |  | 						<contextPath>/front-controller</contextPath> | 
					
						
							|  |  |  | 					</webApp> | 
					
						
							|  |  |  | 				</configuration> | 
					
						
							|  |  |  | 			</plugin> | 
					
						
							|  |  |  | 		</plugins> | 
					
						
							|  |  |  | 	</build> | 
					
						
							| 
									
										
										
										
											2016-10-24 03:45:07 +02:00
										 |  |  | </project> |