-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpom.xml
More file actions
192 lines (187 loc) · 8.46 KB
/
pom.xml
File metadata and controls
192 lines (187 loc) · 8.46 KB
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.rickey</groupId>
<artifactId>ticketflow</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>
<name>${project.artifactId}</name>
<modules>
<module>ticketflow-server</module>
<module>ticketflow-thread-pool-framework</module>
<module>ticketflow-common</module>
<module>ticketflow-server-client</module>
<module>ticketflow-spring-cloud-framework</module>
<module>ticketflow-redis-tool-framework</module>
<module>ticketflow-id-generator-framework</module>
<module>ticketflow-redisson-framework</module>
<module>ticketflow-captcha-manage-framework</module>
<module>ticketflow-elasticsearch-framework</module>
</modules>
<properties>
<revision>0.0.1-SNAPSHOT</revision>
<java.version>17</java.version>
<project.sourceEncoding>UTF-8</project.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<spring-boot.version>3.3.0</spring-boot.version>
<spring-cloud.version>2023.0.2</spring-cloud.version>
<spring-cloud-alibaba.version>2023.0.1.0</spring-cloud-alibaba.version>
<fastjson.version>1.2.83</fastjson.version>
<oshi-core.version>6.2.2</oshi-core.version>
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
<jdk.version>17</jdk.version>
<nacos.version>2.0.3</nacos.version>
<jasypt.version>3.0.5</jasypt.version>
<maven-compiler.version>3.8.1</maven-compiler.version>
<maven-resources.version>3.2.0</maven-resources.version>
<maven-source.version>3.2.1</maven-source.version>
<flatten-maven.version>1.4.1</flatten-maven.version>
<fastjson.version>2.0.9</fastjson.version>
<oshi-core.version>6.2.2</oshi-core.version>
<commons-lang.version>2.6</commons-lang.version>
<jjwt.version>0.9.1</jjwt.version>
<hutool.version>5.8.25</hutool.version>
<log4j.version>2.17.0</log4j.version>
<pagehelper.version>5.2.0</pagehelper.version>
<commons-collections.version>3.2.2</commons-collections.version>
<spring-boot-admin-starter-server.version>3.3.0</spring-boot-admin-starter-server.version>
<mybatis-plus.version>3.5.7</mybatis-plus.version>
<mybatis-plus-generator.version>3.5.7</mybatis-plus-generator.version>
<freemarker.version>2.3.29</freemarker.version>
<druid.version>1.1.10</druid.version>
<spring-boot-admin-starter-client.version>2.3.1</spring-boot-admin-starter-client.version>
<knife4j.version>4.3.0</knife4j.version>
<openapi.swagger.version>2.2.0</openapi.swagger.version>
<redisson.version>3.32.0</redisson.version>
<qps-helper.version>1.1.3-RELEASE</qps-helper.version>
<alipay-sdk-java-version>4.38.197.ALL</alipay-sdk-java-version>
<shardingsphere.version>5.3.2</shardingsphere.version>
<snakeyaml.version>1.33</snakeyaml.version>
<spring-boot-starter-captcha.version>1.3.0</spring-boot-starter-captcha.version>
<caffeine.version>2.9.3</caffeine.version>
<jaxb.version>2.3.0</jaxb.version>
<activation.version>1.1.1</activation.version>
<spotless-maven-plugin.version>2.22.1</spotless-maven-plugin.version>
</properties>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-alibaba-dependencies</artifactId>
<version>${spring-cloud-alibaba.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>${project.sourceEncoding}</encoding>
</configuration>
</plugin>
<!-- <plugin>-->
<!-- <groupId>com.diffplug.spotless</groupId>-->
<!-- <artifactId>spotless-maven-plugin</artifactId>-->
<!-- <version>${spotless-maven-plugin.version}</version>-->
<!-- <configuration>-->
<!-- <java>-->
<!-- <eclipse>-->
<!-- <file>${project.basedir}/spotless/spotless.xml</file>-->
<!-- </eclipse>-->
<!-- <licenseHeader>-->
<!-- <file>${project.basedir}/spotless/license-header</file>-->
<!-- </licenseHeader>-->
<!-- </java>-->
<!-- </configuration>-->
<!-- <!–绑定maven生命周期,在compile时会执行apply –>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <goals>-->
<!-- <goal>apply</goal>-->
<!-- </goals>-->
<!-- <phase>compile</phase>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>${maven-resources.version}</version>
<configuration>
<encoding>${project.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven-source.version}</version>
<configuration>
<!--install、deploy时会上传源码jar包到仓库,默认是true-->
<attach>true</attach>
</configuration>
<executions>
<execution>
<id>attach-source</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>${flatten-maven.version}</version>
<configuration>
<updatePomFile>true</updatePomFile>
</configuration>
<executions>
<!-- enable flattening -->
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<!-- ensure proper cleanup -->
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>