-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpom.xml
More file actions
129 lines (124 loc) · 4.74 KB
/
pom.xml
File metadata and controls
129 lines (124 loc) · 4.74 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
<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>io.github.hpsocket</groupId>
<artifactId>hp-soa-parent</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>io.github.hpsocket.demo</groupId>
<artifactId>hp-demo</artifactId>
<name>${project.artifactId}</name>
<packaging>pom</packaging>
<properties>
<!-- Assembly 文件路径(默认:'/opt/deploy/assembly/assembly.xml') -->
<!--
<maven.assembly.descriptor>src/main/assembly/assembly.xml</maven.assembly.descriptor>
-->
</properties>
<modules>
<module>hp-demo-bff-basic</module>
<module>hp-demo-bff-nacos</module>
<module>hp-demo-bff-mysql</module>
<module>hp-demo-bff-mongodb</module>
<module>hp-demo-bff-elasticsearch</module>
<module>hp-demo-bff-sentinel</module>
<module>hp-demo-bff-skywalking</module>
<module>hp-demo-bff-cloud</module>
<module>hp-demo-infra-basic</module>
<module>hp-demo-infra-nacos</module>
<module>hp-demo-infra-mysql</module>
<module>hp-demo-infra-mongodb</module>
<module>hp-demo-infra-elasticsearch</module>
<module>hp-demo-infra-sentinel</module>
<module>hp-demo-infra-skywalking</module>
<module>hp-demo-infra-cloud</module>
<module>hp-demo-job</module>
<module>hp-demo-mqtt</module>
<module>hp-demo-mq-producer</module>
<module>hp-demo-mq-consumer</module>
<module>hp-demo-kafka</module>
<module>hp-demo-rocketmq</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.github.hpsocket</groupId>
<artifactId>hp-soa-dependencies</artifactId>
<version>${project.parent.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>jakarta.validation</groupId>
<artifactId>jakarta.validation-api</artifactId>
</dependency>
<!-- log4j2 kafka appender supported -->
<!-- log4j2 gelf-kafka appender supported -->
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
</dependency>
<!-- log4j2 redis appender supported -->
<dependency>
<groupId>com.vlkan.log4j2</groupId>
<artifactId>log4j2-redis-appender</artifactId>
</dependency>
<!-- log4j2 gelf appender supported -->
<dependency>
<groupId>io.github.hpsocket</groupId>
<artifactId>hp-soa-framework-gelf</artifactId>
</dependency>
<!-- log4j2 redis appender supported -->
<!-- log4j2 gelf-redis appender supported -->
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
</dependency>
<!-- prometheus metrics supported -->
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-registry-prometheus</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>