1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <project
3
+ xmlns=" http://maven.apache.org/POM/4.0.0"
4
+ xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance"
5
+ xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" >
6
+
7
+ <modelVersion >4.0.0</modelVersion >
8
+
9
+ <parent >
10
+ <groupId >org.springframework.boot</groupId >
11
+ <artifactId >spring-boot-starter-parent</artifactId >
12
+ <version >3.1.3</version >
13
+ <relativePath />
14
+ </parent >
15
+
16
+ <properties >
17
+ <java .version>17</java .version>
18
+ <maven .compiler.source>${java.version} </maven .compiler.source>
19
+ <maven .compiler.target>${java.version} </maven .compiler.target>
20
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
21
+ </properties >
22
+
23
+ <groupId >org.projectx</groupId >
24
+ <artifactId >api-server</artifactId >
25
+ <version >2.0.0</version >
26
+
27
+ <dependencies >
28
+ <dependency >
29
+ <groupId >org.springframework.boot</groupId >
30
+ <artifactId >spring-boot-starter-web</artifactId >
31
+ </dependency >
32
+ <dependency >
33
+ <groupId >org.springframework.boot</groupId >
34
+ <artifactId >spring-boot-starter-security</artifactId >
35
+ </dependency >
36
+ <dependency >
37
+ <groupId >org.springframework.boot</groupId >
38
+ <artifactId >spring-boot-starter-oauth2-resource-server</artifactId >
39
+ </dependency >
40
+ <dependency >
41
+ <groupId >org.springframework.boot</groupId >
42
+ <artifactId >spring-boot-starter-data-mongodb</artifactId >
43
+ </dependency >
44
+ <dependency >
45
+ <groupId >org.springframework.boot</groupId >
46
+ <artifactId >spring-boot-docker-compose</artifactId >
47
+ <scope >runtime</scope >
48
+ <optional >true</optional >
49
+ </dependency >
50
+ <dependency >
51
+ <groupId >org.projectlombok</groupId >
52
+ <artifactId >lombok</artifactId >
53
+ <scope >provided</scope >
54
+ <optional >true</optional >
55
+ </dependency >
56
+ <dependency >
57
+ <groupId >org.springframework.boot</groupId >
58
+ <artifactId >spring-boot-starter-test</artifactId >
59
+ <scope >test</scope >
60
+ </dependency >
61
+ <dependency >
62
+ <groupId >org.springframework.security</groupId >
63
+ <artifactId >spring-security-test</artifactId >
64
+ <scope >test</scope >
65
+ </dependency >
66
+
67
+ <dependency >
68
+ <groupId >org.springframework.cloud</groupId >
69
+ <artifactId >spring-cloud-starter-netflix-eureka-client</artifactId >
70
+ </dependency >
71
+ </dependencies >
72
+
73
+ <dependencyManagement >
74
+ <dependencies >
75
+ <dependency >
76
+ <groupId >org.springframework.cloud</groupId >
77
+ <artifactId >spring-cloud-dependencies</artifactId >
78
+ <version >2022.0.4</version >
79
+ <type >pom</type >
80
+ <scope >import</scope >
81
+ </dependency >
82
+ </dependencies >
83
+ </dependencyManagement >
84
+
85
+ <build >
86
+ <plugins >
87
+ <plugin >
88
+ <groupId >org.springframework.boot</groupId >
89
+ <artifactId >spring-boot-maven-plugin</artifactId >
90
+ <configuration >
91
+ <excludes >
92
+ <exclude >
93
+ <groupId >org.projectlombok</groupId >
94
+ <artifactId >lombok</artifactId >
95
+ </exclude >
96
+ </excludes >
97
+ </configuration >
98
+ </plugin >
99
+ </plugins >
100
+ </build >
101
+ </project >
0 commit comments