37 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
		
		
			
		
	
	
			37 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>spring-mvc-basics-4</artifactId> | ||
|  |     <name>spring-mvc-basics-4</name> | ||
|  |     <packaging>war</packaging> | ||
|  | 
 | ||
|  |     <parent> | ||
|  |         <groupId>com.baeldung</groupId> | ||
|  |         <artifactId>parent-boot-2</artifactId> | ||
|  |         <version>0.0.1-SNAPSHOT</version> | ||
|  |         <relativePath>../parent-boot-2</relativePath> | ||
|  |     </parent> | ||
|  | 
 | ||
|  |     <dependencies> | ||
|  |         <dependency> | ||
|  |             <groupId>com.fasterxml.jackson.core</groupId> | ||
|  |             <artifactId>jackson-databind</artifactId> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.springframework</groupId> | ||
|  |             <artifactId>spring-web</artifactId> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>javax.servlet</groupId> | ||
|  |             <artifactId>javax.servlet-api</artifactId> | ||
|  |             <scope>provided</scope> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.springframework</groupId> | ||
|  |             <artifactId>spring-webmvc</artifactId> | ||
|  |         </dependency> | ||
|  |     </dependencies> | ||
|  | 
 | ||
|  | </project> |