2020-04-09 02:17:14 +00: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>
|
|
|
|
<artifactId>flyfish-framework</artifactId>
|
|
|
|
<groupId>com.flyfish.framework</groupId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>flyfish-data</artifactId>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.flyfish.framework</groupId>
|
|
|
|
<artifactId>flyfish-common</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
<artifactId>spring-data-mongodb</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2021-12-07 09:02:56 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2020-04-09 02:17:14 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-mongodb-reactive</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2021-12-08 08:11:37 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-mongodb</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2021-01-16 03:47:50 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.ulisesbocchio</groupId>
|
|
|
|
<artifactId>jasypt-spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
2020-04-09 02:17:14 +00:00
|
|
|
</dependencies>
|
2021-01-16 03:47:50 +00:00
|
|
|
</project>
|