|
29 | 29 | <properties> |
30 | 30 | <java.version>21</java.version> |
31 | 31 | <org.mapstruct.version>1.5.5.Final</org.mapstruct.version> |
| 32 | + <querydsl.version>5.1.0</querydsl.version> |
| 33 | + <lombok.version>1.18.30</lombok.version> |
32 | 34 | </properties> |
33 | 35 | <dependencies> |
34 | 36 | <dependency> |
|
91 | 93 | <groupId>org.springframework.boot</groupId> |
92 | 94 | <artifactId>spring-boot-starter-validation</artifactId> |
93 | 95 | </dependency> |
| 96 | + <dependency> |
| 97 | + <groupId>jakarta.persistence</groupId> |
| 98 | + <artifactId>jakarta.persistence-api</artifactId> |
| 99 | + <version>3.1.0</version> |
| 100 | + <scope>provided</scope> |
| 101 | + </dependency> |
94 | 102 | </dependencies> |
95 | 103 |
|
96 | 104 | <build> |
97 | 105 | <plugins> |
98 | | - <plugin> |
99 | | - <groupId>org.apache.maven.plugins</groupId> |
100 | | - <artifactId>maven-compiler-plugin</artifactId> |
101 | | - <configuration> |
| 106 | + <plugin> |
| 107 | + <groupId>org.apache.maven.plugins</groupId> |
| 108 | + <artifactId>maven-compiler-plugin</artifactId> |
| 109 | + <version>3.11.0</version> |
| 110 | + <configuration> |
102 | 111 | <release>${java.version}</release> |
103 | | - </configuration> |
104 | | - </plugin> |
| 112 | + <annotationProcessorPaths> |
| 113 | + <path> |
| 114 | + <groupId>org.projectlombok</groupId> |
| 115 | + <artifactId>lombok</artifactId> |
| 116 | + <version>${lombok.version}</version> |
| 117 | + </path> |
| 118 | + <path> |
| 119 | + <groupId>com.querydsl</groupId> |
| 120 | + <artifactId>querydsl-apt</artifactId> |
| 121 | + <version>5.1.0</version> |
| 122 | + <classifier>jakarta</classifier> |
| 123 | + </path> |
| 124 | + <path> |
| 125 | + <groupId>jakarta.persistence</groupId> |
| 126 | + <artifactId>jakarta.persistence-api</artifactId> |
| 127 | + <version>3.1.0</version> |
| 128 | + </path> |
| 129 | + <path> |
| 130 | + <groupId>org.mapstruct</groupId> |
| 131 | + <artifactId>mapstruct-processor</artifactId> |
| 132 | + <version>${org.mapstruct.version}</version> |
| 133 | + </path> |
| 134 | + </annotationProcessorPaths> |
| 135 | + </configuration> |
| 136 | + </plugin> |
105 | 137 | <plugin> |
106 | 138 | <groupId>org.springframework.boot</groupId> |
107 | 139 | <artifactId>spring-boot-maven-plugin</artifactId> |
|
158 | 190 | <aggregate>true</aggregate> |
159 | 191 | </configuration> |
160 | 192 | </plugin> |
161 | | - <plugin> |
162 | | - <groupId>com.mysema.maven</groupId> |
163 | | - <artifactId>apt-maven-plugin</artifactId> |
164 | | - <version>1.1.3</version> |
165 | | - <executions> |
166 | | - <execution> |
167 | | - <goals> |
168 | | - <goal>process</goal> |
169 | | - </goals> |
170 | | - <configuration> |
171 | | - <outputDirectory>target/generated-sources/java</outputDirectory> |
172 | | - <processor>com.mysema.query.apt.jpa.JPAAnnotationProcessor</processor> |
173 | | - </configuration> |
174 | | - </execution> |
175 | | - </executions> |
176 | | - </plugin> |
177 | 193 | <plugin> |
178 | 194 | <groupId>com.diffplug.spotless</groupId> |
179 | 195 | <artifactId>spotless-maven-plugin</artifactId> |
|
0 commit comments