-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
148 lines (116 loc) · 3.68 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.maozi</groupId>
<artifactId>maozi-cloud-parent</artifactId>
<version>1.1.1</version>
<relativePath/>
</parent>
<artifactId>maozi-cloud-basics-gateway</artifactId>
<version>${revision}</version>
<properties>
<revision>1.3.1</revision>
<maven.test.skip>true</maven.test.skip>
<maven.install.skip>true</maven.install.skip>
<maven.deploy.skip>true</maven.deploy.skip>
<application-run>com.maozi.GatewayApplication</application-run>
</properties>
<dependencies>
<!-- Project Begin -->
<dependency>
<groupId>com.maozi</groupId>
<artifactId>maozi-cloud-service-base-run</artifactId>
<version>${maozi-cloud-service-base-run.version}</version>
</dependency>
<dependency>
<groupId>com.maozi</groupId>
<artifactId>maozi-cloud-common-result</artifactId>
<version>${maozi-cloud-common-result.version}</version>
<exclusions>
<exclusion>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-oauth2</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-undertow</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.maozi</groupId>
<artifactId>maozi-cloud-common-utils</artifactId>
<version>${maozi-cloud-common-utils.version}</version>
</dependency>
<dependency>
<groupId>com.maozi</groupId>
<artifactId>maozi-cloud-config-monitor</artifactId>
<version>${maozi-cloud-config-monitor.version}</version>
</dependency>
<dependency>
<groupId>com.maozi</groupId>
<artifactId>maozi-cloud-config-discovery</artifactId>
<version>${maozi-cloud-config-discovery.version}</version>
</dependency>
<dependency>
<groupId>com.maozi</groupId>
<artifactId>maozi-cloud-config-sentinel</artifactId>
<version>${maozi-cloud-config-sentinel.version}</version>
</dependency>
<!-- Project End -->
<dependency>
<groupId>org.codehaus.janino</groupId>
<artifactId>janino</artifactId>
</dependency>
<dependency>
<groupId>org.apache.skywalking</groupId>
<artifactId>apm-toolkit-trace</artifactId>
<version>${skywalking.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-gateway</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-alibaba-sentinel-gateway</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
</dependency>
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-webflux-core</artifactId>
<version>${springdoc-openapi.version}</version>
</dependency>
</dependencies>
<!-- boot打包 Begin -->
<build>
<finalName>${artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.1.5.RELEASE</version>
<configuration>
<mainClass>${application-run}</mainClass>
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!-- boot打包 End -->
</project>