| 
									
										
										
										
											2019-10-31 20:43:47 -05:00
										 |  |  | <?xml version="1.0" encoding="UTF-8"?> | 
					
						
							|  |  |  | <project xmlns="http://maven.apache.org/POM/4.0.0" | 
					
						
							| 
									
										
										
										
											2021-05-17 20:23:25 +05:30
										 |  |  |     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"> | 
					
						
							| 
									
										
										
										
											2019-10-31 20:43:47 -05:00
										 |  |  |     <modelVersion>4.0.0</modelVersion> | 
					
						
							|  |  |  |     <artifactId>spring-mvc-basics</artifactId> | 
					
						
							|  |  |  |     <version>0.1-SNAPSHOT</version> | 
					
						
							|  |  |  |     <name>spring-mvc-basics</name> | 
					
						
							|  |  |  |     <packaging>jar</packaging> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <parent> | 
					
						
							|  |  |  |         <groupId>com.baeldung</groupId> | 
					
						
							| 
									
										
										
										
											2024-01-10 18:51:35 +05:30
										 |  |  |         <artifactId>parent-boot-3</artifactId> | 
					
						
							| 
									
										
										
										
											2019-10-31 20:43:47 -05:00
										 |  |  |         <version>0.0.1-SNAPSHOT</version> | 
					
						
							| 
									
										
										
										
											2024-01-10 18:51:35 +05:30
										 |  |  |         <relativePath>../../parent-boot-3</relativePath> | 
					
						
							| 
									
										
										
										
											2019-10-31 20:43:47 -05:00
										 |  |  |     </parent> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <dependencies> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |             <artifactId>spring-boot-starter-web</artifactId> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  |         <!-- to enable JSP --> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.apache.tomcat.embed</groupId> | 
					
						
							|  |  |  |             <artifactId>tomcat-embed-jasper</artifactId> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							| 
									
										
										
										
											2024-02-01 18:19:32 +05:30
										 |  |  |             <groupId>jakarta.servlet.jsp.jstl</groupId> | 
					
						
							|  |  |  |             <artifactId>jakarta.servlet.jsp.jstl-api</artifactId> | 
					
						
							|  |  |  |             <version>${jakarta.servlet.jsp.jstl.version}</version> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.glassfish.web</groupId> | 
					
						
							|  |  |  |             <artifactId>jakarta.servlet.jsp.jstl</artifactId> | 
					
						
							|  |  |  |             <version>${jakarta.servlet.jsp.jstl.version}</version> | 
					
						
							| 
									
										
										
										
											2024-01-10 18:51:35 +05:30
										 |  |  |         </dependency> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>com.sun.xml.bind</groupId> | 
					
						
							|  |  |  |             <artifactId>jaxb-impl</artifactId> | 
					
						
							|  |  |  |             <version>${jaxb-runtime.version}</version> | 
					
						
							| 
									
										
										
										
											2019-10-31 20:43:47 -05:00
										 |  |  |         </dependency> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |             <artifactId>spring-boot-starter-test</artifactId> | 
					
						
							|  |  |  |             <scope>test</scope> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							| 
									
										
										
										
											2023-05-31 19:58:19 +03:00
										 |  |  |         <dependency> | 
					
						
							| 
									
										
										
										
											2024-01-10 18:51:35 +05:30
										 |  |  |             <groupId>io.rest-assured</groupId> | 
					
						
							|  |  |  |             <artifactId>rest-assured</artifactId> | 
					
						
							|  |  |  |             <version>${rest-assured-version}</version> | 
					
						
							|  |  |  |             <scope>test</scope> | 
					
						
							| 
									
										
										
										
											2023-05-31 19:58:19 +03:00
										 |  |  |         </dependency> | 
					
						
							| 
									
										
										
										
											2024-01-10 18:51:35 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 20:43:47 -05:00
										 |  |  |     </dependencies> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <build> | 
					
						
							| 
									
										
										
										
											2019-12-16 18:35:04 +02:00
										 |  |  |         <finalName>spring-mvc-basics</finalName> | 
					
						
							| 
									
										
										
										
											2019-10-31 20:43:47 -05:00
										 |  |  |         <plugins> | 
					
						
							|  |  |  |             <plugin> | 
					
						
							|  |  |  |                 <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |                 <artifactId>spring-boot-maven-plugin</artifactId> | 
					
						
							|  |  |  |                 <configuration> | 
					
						
							|  |  |  |                     <mainClass>com.baeldung.Application</mainClass> | 
					
						
							|  |  |  |                     <layout>JAR</layout> | 
					
						
							|  |  |  |                 </configuration> | 
					
						
							|  |  |  |             </plugin> | 
					
						
							| 
									
										
										
										
											2024-03-06 20:36:34 +05:30
										 |  |  |             <plugin> | 
					
						
							|  |  |  |                 <groupId>org.apache.maven.plugins</groupId> | 
					
						
							|  |  |  |                 <artifactId>maven-compiler-plugin</artifactId> | 
					
						
							|  |  |  |                 <configuration> | 
					
						
							|  |  |  |                     <parameters>true</parameters> | 
					
						
							|  |  |  |                 </configuration> | 
					
						
							|  |  |  |             </plugin> | 
					
						
							| 
									
										
										
										
											2019-10-31 20:43:47 -05:00
										 |  |  |         </plugins> | 
					
						
							|  |  |  |     </build> | 
					
						
							| 
									
										
										
										
											2019-12-05 16:56:52 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-31 19:58:19 +03:00
										 |  |  |     <properties> | 
					
						
							| 
									
										
										
										
											2024-01-10 18:51:35 +05:30
										 |  |  |         <jaxb-runtime.version>4.0.1</jaxb-runtime.version> | 
					
						
							|  |  |  |         <rest-assured-version>5.4.0</rest-assured-version> | 
					
						
							|  |  |  |         <jstl-version>1.2</jstl-version> | 
					
						
							| 
									
										
										
										
											2024-02-01 18:19:32 +05:30
										 |  |  |         <jakarta.servlet.jsp.jstl.version>2.0.0</jakarta.servlet.jsp.jstl.version> | 
					
						
							| 
									
										
										
										
											2023-05-31 19:58:19 +03:00
										 |  |  |     </properties> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-17 20:23:25 +05:30
										 |  |  | </project> |