-
Notifications
You must be signed in to change notification settings - Fork 9
/
pom.xml
46 lines (44 loc) · 1.61 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
<?xml version="1.0"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.hpsocket</groupId>
<artifactId>hp-soa-starter</artifactId>
<version>${revision}</version>
</parent>
<artifactId>hp-soa-starter-leaf</artifactId>
<name>${project.artifactId}</name>
<packaging>jar</packaging>
<description>hp-soa: a fully functional, easy-to-use, and highly scalable microservice framework</description>
<url>https://github.com/ldcsaa/hp-soa</url>
<properties>
</properties>
<dependencies>
<dependency>
<groupId>io.github.hpsocket</groupId>
<artifactId>hp-soa-framework-web</artifactId>
</dependency>
<dependency>
<groupId>io.github.hpsocket</groupId>
<artifactId>hp-soa-framework-leaf</artifactId>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>dynamic-datasource-spring</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
</project>