Files
dax-pay/bootx-platform/bootx-services/service-iam/pom.xml

63 lines
2.0 KiB
XML

<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>cn.bootx.platform</groupId>
<artifactId>bootx-services</artifactId>
<version>1.3.6.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>service-iam</artifactId>
<description>身份识别与访问管理</description>
<dependencies>
<!-- mysql -->
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<scope>runtime</scope>
</dependency>
<!-- mp -->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
</dependency>
<!-- 认证模块 -->
<dependency>
<groupId>cn.bootx.platform</groupId>
<artifactId>common-starter-auth</artifactId>
</dependency>
<!-- 基础功能模块 -->
<dependency>
<groupId>cn.bootx.platform</groupId>
<artifactId>service-baseapi</artifactId>
<version>${bootx-platform.version}</version>
</dependency>
<!-- 审计日志 -->
<dependency>
<groupId>cn.bootx.platform</groupId>
<artifactId>common-starter-audit-log</artifactId>
</dependency>
<!-- 超级查询器 -->
<dependency>
<groupId>cn.bootx.platform</groupId>
<artifactId>common-super-query</artifactId>
</dependency>
<!-- websocket -->
<dependency>
<groupId>cn.bootx.platform</groupId>
<artifactId>common-websocket</artifactId>
</dependency>
<dependency>
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId>
</dependency>
</dependencies>
</project>