2019-07-04 17:20:02 +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>
|
|
|
|
<artifactId>bookMarkService</artifactId>
|
|
|
|
<groupId>com.fanxb</groupId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2019-07-06 17:38:59 +08:00
|
|
|
<artifactId>bookmark-business</artifactId>
|
2019-07-04 17:20:02 +08:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
|
|
|
<module>user</module>
|
2019-07-09 16:43:00 +08:00
|
|
|
<module>bookmark</module>
|
2021-03-04 11:03:51 +08:00
|
|
|
<module>api</module>
|
2019-07-04 17:20:02 +08:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fanxb</groupId>
|
2019-07-06 17:38:59 +08:00
|
|
|
<artifactId>bookmark-common</artifactId>
|
2019-07-04 17:20:02 +08:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|