54 lines
1.6 KiB
XML
54 lines
1.6 KiB
XML
<?xml version="1.0"?>
|
|
<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.honeycombis</groupId>
|
|
<artifactId>honeycom-user</artifactId>
|
|
<version>5.4.0</version>
|
|
</parent>
|
|
|
|
<artifactId>honeycom-user-api</artifactId>
|
|
|
|
<dependencies>
|
|
<!-- 连表查询注解 -->
|
|
<dependency>
|
|
<groupId>com.github.yulichang</groupId>
|
|
<artifactId>mybatis-plus-join-annotation</artifactId>
|
|
</dependency>
|
|
<!--core 工具类-->
|
|
<dependency>
|
|
<groupId>com.honeycombis</groupId>
|
|
<artifactId>honeycom-common-core</artifactId>
|
|
</dependency>
|
|
<!--mybatis plus extension,包含了mybatis plus core-->
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-extension</artifactId>
|
|
</dependency>
|
|
<!--feign 工具类-->
|
|
<dependency>
|
|
<groupId>com.honeycombis</groupId>
|
|
<artifactId>honeycom-common-feign</artifactId>
|
|
</dependency>
|
|
<!-- excel 导入导出 -->
|
|
<dependency>
|
|
<groupId>com.honeycombis</groupId>
|
|
<artifactId>honeycom-common-excel</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.honeycombis</groupId>
|
|
<artifactId>honeycom-tenant-api</artifactId>
|
|
<version>5.4.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|