50 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.3 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>front-controller</artifactId>
 | |
| 	<packaging>war</packaging>
 | |
| 
 | |
| 	<parent>
 | |
| 		<artifactId>patterns-parent</artifactId>
 | |
| 		<groupId>com.baeldung.patterns</groupId>
 | |
| 		<version>1.0.0-SNAPSHOT</version>
 | |
| 		<relativePath>..</relativePath>
 | |
| 	</parent>
 | |
| 
 | |
| 	<dependencies>
 | |
| 		<dependency>
 | |
| 			<groupId>javax.servlet</groupId>
 | |
| 			<artifactId>javax.servlet-api</artifactId>
 | |
| 		</dependency>
 | |
| 	</dependencies>
 | |
| 
 | |
| 	<build>
 | |
| 		<plugins>
 | |
| 			<plugin>
 | |
| 				<groupId>org.apache.maven.plugins</groupId>
 | |
| 				<artifactId>maven-compiler-plugin</artifactId>
 | |
| 				<version>3.7.0</version>
 | |
| 				<configuration>
 | |
| 				    <source>1.8</source>
 | |
| 				    <target>1.8</target>
 | |
| 				</configuration>
 | |
| 			</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>
 | |
| </project>
 |