增加mapstruct依赖

2024年8月22日18:40:46
This commit is contained in:
xiang2lin 2024-08-22 18:40:51 +08:00
parent f58e5ba4da
commit a4e1250a0a
1 changed files with 11 additions and 0 deletions

11
pom.xml
View File

@ -383,6 +383,17 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
<version>1.4.2.Final</version>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>1.4.2.Final</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>