pusong-crm/pusong-modules/pusong-business/pom.xml

116 lines
3.3 KiB
XML
Raw Normal View History

2024-07-26 17:44:59 +08:00
<?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>com.pusong</groupId>
<artifactId>pusong-modules</artifactId>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pusong-business</artifactId>
<description>
主要业务模块
</description>
<dependencies>
<!-- 通用工具-->
<dependency>
<groupId>com.pusong</groupId>
<artifactId>pusong-common-core</artifactId>
</dependency>
<dependency>
<groupId>com.pusong</groupId>
<artifactId>pusong-common-doc</artifactId>
</dependency>
<!--短信模块<dependency>
<groupId>com.pusong</groupId>
<artifactId>pusong-common-sms</artifactId>
</dependency>-->
<!-- 邮件模块<dependency>
<groupId>com.pusong</groupId>
<artifactId>pusong-common-mail</artifactId>
</dependency>-->
<dependency>
<groupId>com.pusong</groupId>
<artifactId>pusong-common-redis</artifactId>
</dependency>
<dependency>
<groupId>com.pusong</groupId>
<artifactId>pusong-common-idempotent</artifactId>
</dependency>
<dependency>
<groupId>com.pusong</groupId>
<artifactId>pusong-common-mybatis</artifactId>
</dependency>
<dependency>
<groupId>com.pusong</groupId>
<artifactId>pusong-common-log</artifactId>
</dependency>
<dependency>
<groupId>com.pusong</groupId>
<artifactId>pusong-common-excel</artifactId>
</dependency>
<dependency>
<groupId>com.pusong</groupId>
<artifactId>pusong-common-security</artifactId>
</dependency>
<dependency>
<groupId>com.pusong</groupId>
<artifactId>pusong-common-web</artifactId>
</dependency>
<!-- <dependency>
<groupId>com.pusong</groupId>
<artifactId>pusong-common-ratelimiter</artifactId>
</dependency>-->
<dependency>
<groupId>com.pusong</groupId>
<artifactId>pusong-common-translation</artifactId>
</dependency>
<dependency>
<groupId>com.pusong</groupId>
<artifactId>pusong-common-sensitive</artifactId>
</dependency>
<dependency>
<groupId>com.pusong</groupId>
<artifactId>pusong-common-encrypt</artifactId>
</dependency>
<dependency>
<groupId>com.pusong</groupId>
<artifactId>pusong-common-tenant</artifactId>
</dependency>
<dependency>
<groupId>com.pusong</groupId>
<artifactId>pusong-common-websocket</artifactId>
</dependency>
2024-07-31 17:04:22 +08:00
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
</dependency>
<dependency>
<groupId>com.pusong</groupId>
<artifactId>pusong-system</artifactId>
</dependency>
2024-07-26 17:44:59 +08:00
</dependencies>
</project>