|
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>order-api</artifactId> |
13 | 13 | <version>0.0.1-SNAPSHOT</version> |
14 | 14 | <name>order-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 | <jjwt.version>0.12.6</jjwt.version> |
20 | 32 | <springdoc-openapi.version>2.7.0</springdoc-openapi.version> |
21 | 33 | </properties> |
22 | | - |
23 | 34 | <dependencies> |
24 | 35 | <dependency> |
25 | 36 | <groupId>org.springframework.boot</groupId> |
|
79 | 90 | <artifactId>spring-boot-starter-test</artifactId> |
80 | 91 | <scope>test</scope> |
81 | 92 | </dependency> |
| 93 | + <dependency> |
| 94 | + <groupId>org.springframework.security</groupId> |
| 95 | + <artifactId>spring-security-test</artifactId> |
| 96 | + <scope>test</scope> |
| 97 | + </dependency> |
82 | 98 | </dependencies> |
83 | 99 |
|
84 | 100 | <build> |
85 | 101 | <plugins> |
| 102 | + <plugin> |
| 103 | + <groupId>org.apache.maven.plugins</groupId> |
| 104 | + <artifactId>maven-compiler-plugin</artifactId> |
| 105 | + <configuration> |
| 106 | + <annotationProcessorPaths> |
| 107 | + <path> |
| 108 | + <groupId>org.projectlombok</groupId> |
| 109 | + <artifactId>lombok</artifactId> |
| 110 | + </path> |
| 111 | + </annotationProcessorPaths> |
| 112 | + </configuration> |
| 113 | + </plugin> |
86 | 114 | <plugin> |
87 | 115 | <groupId>org.springframework.boot</groupId> |
88 | 116 | <artifactId>spring-boot-maven-plugin</artifactId> |
|
0 commit comments