|
1 | 1 | <?xml version="1.0" encoding="UTF-8" ?>
|
2 | | -<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"> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 4 | <modelVersion>4.0.0</modelVersion>
|
4 | 5 | <parent>
|
5 | 6 | <groupId>org.springframework.boot</groupId>
|
6 | 7 | <artifactId>spring-boot-starter-parent</artifactId>
|
7 | 8 | <version>3.4.0</version>
|
8 | | - <relativePath/> <!-- lookup parent from repository --> |
| 9 | + <relativePath/> <!-- lookup parent from repository --> |
9 | 10 | </parent>
|
10 | | - |
11 | 11 | <groupId>com.ivanfranchin</groupId>
|
12 | 12 | <artifactId>book-api</artifactId>
|
13 | 13 | <version>0.0.1-SNAPSHOT</version>
|
14 | 14 | <name>book-api</name>
|
15 | 15 | <description>Demo project for Spring Boot</description>
|
16 | | - |
| 16 | + <url/> |
| 17 | + <licenses> |
| 18 | + <license/> |
| 19 | + </licenses> |
| 20 | + <developers> |
| 21 | + <developer/> |
| 22 | + </developers> |
| 23 | + <scm> |
| 24 | + <connection/> |
| 25 | + <developerConnection/> |
| 26 | + <tag/> |
| 27 | + <url/> |
| 28 | + </scm> |
17 | 29 | <properties>
|
18 | 30 | <java.version>21</java.version>
|
19 | 31 | <springdoc-openapi.version>2.7.0</springdoc-openapi.version>
|
20 | 32 | </properties>
|
21 | | - |
22 | 33 | <dependencies>
|
23 | 34 | <dependency>
|
24 | 35 | <groupId>org.springframework.boot</groupId>
|
|
68 | 79 |
|
69 | 80 | <build>
|
70 | 81 | <plugins>
|
| 82 | + <plugin> |
| 83 | + <groupId>org.apache.maven.plugins</groupId> |
| 84 | + <artifactId>maven-compiler-plugin</artifactId> |
| 85 | + <configuration> |
| 86 | + <annotationProcessorPaths> |
| 87 | + <path> |
| 88 | + <groupId>org.projectlombok</groupId> |
| 89 | + <artifactId>lombok</artifactId> |
| 90 | + </path> |
| 91 | + </annotationProcessorPaths> |
| 92 | + </configuration> |
| 93 | + </plugin> |
71 | 94 | <plugin>
|
72 | 95 | <groupId>org.springframework.boot</groupId>
|
73 | 96 | <artifactId>spring-boot-maven-plugin</artifactId>
|
|
0 commit comments