|
208 | 208 | <groupId>org.springframework.boot</groupId> |
209 | 209 | <artifactId>spring-boot-starter-security</artifactId> |
210 | 210 | </dependency> |
| 211 | + <dependency> |
| 212 | + <groupId>javax.transaction</groupId> |
| 213 | + <artifactId>javax.transaction-api</artifactId> |
| 214 | + <scope>compile</scope> |
| 215 | + </dependency> |
| 216 | + <dependency> |
| 217 | + <groupId>javax.interceptor</groupId> |
| 218 | + <artifactId>javax.interceptor-api</artifactId> |
| 219 | + <version>1.2</version> |
| 220 | + <scope>compile</scope> |
| 221 | + </dependency> |
211 | 222 | </dependencies> |
212 | 223 |
|
213 | 224 | <build> |
|
216 | 227 | <groupId>org.springframework.boot</groupId> |
217 | 228 | <artifactId>spring-boot-maven-plugin</artifactId> |
218 | 229 | </plugin> |
| 230 | + <!-- |
219 | 231 | <plugin> |
220 | 232 | <groupId>org.apache.maven.plugins</groupId> |
221 | 233 | <artifactId>maven-dependency-plugin</artifactId> |
222 | 234 | </plugin> |
| 235 | + --> |
223 | 236 | <plugin> |
224 | 237 | <groupId>pl.project13.maven</groupId> |
225 | 238 | <artifactId>git-commit-id-plugin</artifactId> |
|
244 | 257 | </executions> |
245 | 258 | </plugin> |
246 | 259 |
|
247 | | - <plugin> |
248 | | - <groupId>org.springframework.boot</groupId> |
249 | | - <artifactId>spring-boot-maven-plugin</artifactId> |
250 | | - </plugin> |
251 | | - |
252 | 260 | <plugin> |
253 | 261 | <groupId>org.apache.maven.plugins</groupId> |
254 | 262 | <artifactId>maven-compiler-plugin</artifactId> |
|
292 | 300 | <artifactId>maven-javadoc-plugin</artifactId> |
293 | 301 | <configuration> |
294 | 302 | <linksource>true</linksource> |
295 | | - <maxmemory>2048m</maxmemory> |
296 | | - <source>1.8</source> |
| 303 | + <maxmemory>4096m</maxmemory> |
| 304 | + <source>${java.version}</source> |
297 | 305 | <encoding>${project.build.sourceEncoding}</encoding> |
298 | 306 | <javadocExecutable>${java.home}/../bin/javadoc</javadocExecutable> |
| 307 | + <additionalparam>-Xdoclint:none</additionalparam> |
299 | 308 | </configuration> |
300 | 309 | <executions> |
301 | 310 | <execution> |
|
305 | 314 | <goal>javadoc</goal> |
306 | 315 | </goals> |
307 | 316 | <configuration> |
308 | | - <!-- |
309 | 317 | <linksource>true</linksource> |
310 | | - --> |
311 | | - <maxmemory>2048m</maxmemory> |
312 | | - <source>1.8</source> |
| 318 | + <maxmemory>4096m</maxmemory> |
| 319 | + <source>${java.version}</source> |
313 | 320 | <encoding>${project.build.sourceEncoding}</encoding> |
314 | 321 | <javadocExecutable>${java.home}/../bin/javadoc</javadocExecutable> |
| 322 | + <additionalparam>-Xdoclint:none</additionalparam> |
315 | 323 | </configuration> |
316 | 324 | </execution> |
317 | 325 | </executions> |
|
457 | 465 | <artifactId>cobertura-maven-plugin</artifactId> |
458 | 466 | <version>2.7</version> |
459 | 467 | </plugin> |
| 468 | + |
460 | 469 | </plugins> |
461 | 470 | </build> |
462 | 471 |
|
|
606 | 615 | </reportSet> |
607 | 616 | </reportSets> |
608 | 617 | </plugin> |
609 | | - <plugin> |
610 | | - <groupId>org.codehaus.mojo</groupId> |
611 | | - <artifactId>cobertura-maven-plugin</artifactId> |
612 | | - <version>2.7</version> |
613 | | - </plugin> |
614 | 618 | </plugins> |
615 | 619 | </reporting> |
616 | 620 | </project> |
0 commit comments