初始化

This commit is contained in:
fbc
2022-09-22 18:53:40 +08:00
commit cd227d9239
8312 changed files with 1397870 additions and 0 deletions

32
accompany-base/pom.xml Normal file
View File

@@ -0,0 +1,32 @@
<?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>
<artifactId>accompany-boot</artifactId>
<groupId>com.accompany</groupId>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>accompany-base</artifactId>
<packaging>pom</packaging>
<modules>
<module>accompany-core</module>
<module>accompany-common</module>
<module>accompany-sms</module>
<module>accompany-payment</module>
</modules>
<dependencies>
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson-spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson-spring-data-20</artifactId>
</dependency>
</dependencies>
</project>