| 
									
										
										
										
											2023-02-14 07:28:13 +01:00
										 |  |  | <?xml version="1.0" encoding="UTF-8"?> | 
					
						
							|  |  |  | <project xmlns="http://maven.apache.org/POM/4.0.0" | 
					
						
							| 
									
										
										
										
											2023-05-24 19:37:51 +05:30
										 |  |  |     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 
					
						
							|  |  |  |     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | 
					
						
							| 
									
										
										
										
											2023-02-14 07:28:13 +01:00
										 |  |  |     <modelVersion>4.0.0</modelVersion> | 
					
						
							|  |  |  |     <artifactId>spring-boot-3-test-pitfalls</artifactId> | 
					
						
							|  |  |  |     <version>0.0.1-SNAPSHOT</version> | 
					
						
							|  |  |  |     <name>spring-boot-3-test-pitfalls</name> | 
					
						
							|  |  |  |     <description>Demo project for Spring Boot Testing Pitfalls</description> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <parent> | 
					
						
							| 
									
										
										
										
											2024-02-27 02:49:02 +01:00
										 |  |  |         <groupId>com.baeldung.spring-boot-modules</groupId> | 
					
						
							|  |  |  |         <artifactId>spring-boot-modules</artifactId> | 
					
						
							|  |  |  |         <version>1.0.0-SNAPSHOT</version> | 
					
						
							| 
									
										
										
										
											2023-02-14 07:28:13 +01:00
										 |  |  |     </parent> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <dependencies> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |             <artifactId>spring-boot-starter-web</artifactId> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |             <artifactId>spring-boot-starter-validation</artifactId> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |             <artifactId>spring-boot-starter-test</artifactId> | 
					
						
							|  |  |  |             <scope>test</scope> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |             <artifactId>spring-boot-devtools</artifactId> | 
					
						
							|  |  |  |             <scope>runtime</scope> | 
					
						
							|  |  |  |             <optional>true</optional> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.projectlombok</groupId> | 
					
						
							|  |  |  |             <artifactId>lombok</artifactId> | 
					
						
							|  |  |  |             <optional>true</optional> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.mapstruct</groupId> | 
					
						
							|  |  |  |             <artifactId>mapstruct</artifactId> | 
					
						
							|  |  |  |             <version>${org.mapstruct.version}</version> | 
					
						
							|  |  |  |             <optional>true</optional> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  |     </dependencies> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <build> | 
					
						
							|  |  |  |         <pluginManagement> | 
					
						
							|  |  |  |             <plugins> | 
					
						
							|  |  |  |                 <plugin> | 
					
						
							|  |  |  |                     <groupId>org.apache.maven.plugins</groupId> | 
					
						
							|  |  |  |                     <artifactId>maven-compiler-plugin</artifactId> | 
					
						
							|  |  |  |                     <configuration> | 
					
						
							|  |  |  |                         <annotationProcessorPaths> | 
					
						
							|  |  |  |                             <path> | 
					
						
							|  |  |  |                                 <groupId>org.projectlombok</groupId> | 
					
						
							|  |  |  |                                 <artifactId>lombok</artifactId> | 
					
						
							|  |  |  |                                 <version>${lombok.version}</version> | 
					
						
							|  |  |  |                             </path> | 
					
						
							|  |  |  |                             <path> | 
					
						
							|  |  |  |                                 <groupId>org.mapstruct</groupId> | 
					
						
							|  |  |  |                                 <artifactId>mapstruct-processor</artifactId> | 
					
						
							|  |  |  |                                 <version>${org.mapstruct.version}</version> | 
					
						
							|  |  |  |                             </path> | 
					
						
							|  |  |  |                             <path> | 
					
						
							|  |  |  |                                 <groupId>org.projectlombok</groupId> | 
					
						
							|  |  |  |                                 <artifactId>lombok-mapstruct-binding</artifactId> | 
					
						
							| 
									
										
										
										
											2023-07-19 15:13:21 +03:00
										 |  |  |                                 <version>${lombok-mapstruct-binding.version}</version> | 
					
						
							| 
									
										
										
										
											2023-02-14 07:28:13 +01:00
										 |  |  |                             </path> | 
					
						
							|  |  |  |                         </annotationProcessorPaths> | 
					
						
							|  |  |  |                     </configuration> | 
					
						
							|  |  |  |                 </plugin> | 
					
						
							|  |  |  |             </plugins> | 
					
						
							|  |  |  |         </pluginManagement> | 
					
						
							|  |  |  |     </build> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <properties> | 
					
						
							|  |  |  |         <org.mapstruct.version>1.5.3.Final</org.mapstruct.version> | 
					
						
							| 
									
										
										
										
											2023-07-19 15:13:21 +03:00
										 |  |  |         <lombok-mapstruct-binding.version>0.2.0</lombok-mapstruct-binding.version> | 
					
						
							| 
									
										
										
										
											2023-02-14 07:28:13 +01:00
										 |  |  |         <maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version> | 
					
						
							| 
									
										
										
										
											2024-02-27 02:49:02 +01:00
										 |  |  |         <java.version>17</java.version> | 
					
						
							| 
									
										
										
										
											2023-02-14 07:28:13 +01:00
										 |  |  |     </properties> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | </project> |