52 lines
1.9 KiB
XML
52 lines
1.9 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>
|
||
<artifactId>flyfish-framework</artifactId>
|
||
<groupId>dev.flyfish.framework</groupId>
|
||
<version>${revision}</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
|
||
<artifactId>flyfish-user</artifactId>
|
||
<description>flyfish用户中心模块,提供缺省的用户体系,按需添加</description>
|
||
|
||
<properties>
|
||
<maven.compiler.source>17</maven.compiler.source>
|
||
<maven.compiler.target>17</maven.compiler.target>
|
||
</properties>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>org.springframework.data</groupId>
|
||
<artifactId>spring-data-r2dbc</artifactId>
|
||
<optional>true</optional>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.data</groupId>
|
||
<artifactId>spring-data-mongodb</artifactId>
|
||
<optional>true</optional>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>dev.flyfish.framework</groupId>
|
||
<artifactId>flyfish-data-common</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>dev.flyfish.framework</groupId>
|
||
<artifactId>flyfish-web</artifactId>
|
||
<version>${revision}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>io.springboot.plugin</groupId>
|
||
<artifactId>spring-boot-starter-captcha</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>dev.flyfish.framework</groupId>
|
||
<artifactId>flyfish-data-r2dbc</artifactId>
|
||
<version>${revision}</version>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
</dependencies>
|
||
</project>
|