88 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			3.5 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
 | |
|     <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>
 | |
|         <groupId>com.baeldung</groupId>
 | |
|         <artifactId>parent-boot-3</artifactId>
 | |
|         <version>0.0.1-SNAPSHOT</version>
 | |
|         <relativePath>../../parent-boot-3</relativePath>
 | |
|     </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>
 | |
|                                 <version>${lombok-mapstruct-binding.version}</version>
 | |
|                             </path>
 | |
|                         </annotationProcessorPaths>
 | |
|                     </configuration>
 | |
|                 </plugin>
 | |
|             </plugins>
 | |
|         </pluginManagement>
 | |
|     </build>
 | |
| 
 | |
|     <properties>
 | |
|         <org.mapstruct.version>1.5.3.Final</org.mapstruct.version>
 | |
|         <lombok-mapstruct-binding.version>0.2.0</lombok-mapstruct-binding.version>
 | |
|         <maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version>
 | |
|     </properties>
 | |
| 
 | |
| </project>
 |