1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5
+ <modelVersion >4.0.0</modelVersion >
6
+ <parent >
7
+ <groupId >com.laigeoffer.pmhub-cloud</groupId >
8
+ <artifactId >pmhub</artifactId >
9
+ <version >0.0.1</version >
10
+ </parent >
11
+
12
+ <artifactId >pmhub-monitor</artifactId >
13
+
14
+ <description >
15
+ pmhub-monitor 监控中心
16
+ </description >
17
+
18
+ <properties >
19
+ <maven .compiler.source>8</maven .compiler.source>
20
+ <maven .compiler.target>8</maven .compiler.target>
21
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
22
+ </properties >
23
+
24
+ <dependencies >
25
+
26
+ <!-- SpringBoot Admin -->
27
+ <dependency >
28
+ <groupId >de.codecentric</groupId >
29
+ <artifactId >spring-boot-admin-starter-server</artifactId >
30
+ <version >${spring-boot-admin.version} </version >
31
+ </dependency >
32
+
33
+ <!-- SpringCloud Alibaba Nacos -->
34
+ <dependency >
35
+ <groupId >com.alibaba.cloud</groupId >
36
+ <artifactId >spring-cloud-starter-alibaba-nacos-discovery</artifactId >
37
+ </dependency >
38
+
39
+ <!-- SpringCloud Alibaba Nacos Config -->
40
+ <dependency >
41
+ <groupId >com.alibaba.cloud</groupId >
42
+ <artifactId >spring-cloud-starter-alibaba-nacos-config</artifactId >
43
+ </dependency >
44
+
45
+ <!-- Spring Cloud Config Client,用于配置的动态刷新 -->
46
+ <dependency >
47
+ <groupId >org.springframework.cloud</groupId >
48
+ <artifactId >spring-cloud-starter-bootstrap</artifactId >
49
+ </dependency >
50
+
51
+ <!-- SpringCloud Alibaba Sentinel -->
52
+ <dependency >
53
+ <groupId >com.alibaba.cloud</groupId >
54
+ <artifactId >spring-cloud-starter-alibaba-sentinel</artifactId >
55
+ </dependency >
56
+
57
+ <!-- SpringBoot Web -->
58
+ <dependency >
59
+ <groupId >org.springframework.boot</groupId >
60
+ <artifactId >spring-boot-starter-web</artifactId >
61
+ </dependency >
62
+
63
+ <!-- Spring Security -->
64
+ <dependency >
65
+ <groupId >org.springframework.boot</groupId >
66
+ <artifactId >spring-boot-starter-security</artifactId >
67
+ </dependency >
68
+
69
+ </dependencies >
70
+
71
+ <build >
72
+ <finalName >${project.artifactId} </finalName >
73
+ <plugins >
74
+ <plugin >
75
+ <groupId >org.springframework.boot</groupId >
76
+ <artifactId >spring-boot-maven-plugin</artifactId >
77
+ <executions >
78
+ <execution >
79
+ <goals >
80
+ <goal >repackage</goal >
81
+ </goals >
82
+ </execution >
83
+ </executions >
84
+ </plugin >
85
+ </plugins >
86
+ </build >
87
+
88
+
89
+ </project >
0 commit comments