feat: 增加用户中心模块,提供用户功能快速接入

This commit is contained in:
wangyu 2021-01-05 15:34:48 +08:00
parent 726d9fd4e5
commit 079f1c9d5c
6 changed files with 21 additions and 0 deletions

20
flyfish-user/pom.xml Normal file
View File

@ -0,0 +1,20 @@
<?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>flyfish-framework</artifactId>
<groupId>com.flyfish.framework</groupId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>flyfish-user</artifactId>
<description>flyfish用户中心模块提供缺省的用户体系按需添加</description>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
</project>

View File

View File

View File

@ -39,6 +39,7 @@
<module>flyfish-data</module>
<module>flyfish-common</module>
<module>flyfish-web</module>
<module>flyfish-user</module>
</modules>
<repositories>