You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.4 KiB
XML
79 lines
2.4 KiB
XML
|
2 years ago
|
<?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">
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
|
||
|
|
<parent>
|
||
|
|
<groupId>com.hongshu</groupId>
|
||
|
|
<artifactId>hognshu</artifactId>
|
||
|
|
<version>3.8.7</version>
|
||
|
|
</parent>
|
||
|
|
|
||
|
|
<artifactId>hongshu-web</artifactId>
|
||
|
|
|
||
|
|
<description>
|
||
|
|
web模块
|
||
|
|
</description>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<!-- guava-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.google.guava</groupId>
|
||
|
|
<artifactId>guava</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- gson-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.google.code.gson</groupId>
|
||
|
|
<artifactId>gson</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- baomidou-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.baomidou</groupId>
|
||
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
||
|
|
<exclusions>
|
||
|
|
<exclusion>
|
||
|
|
<groupId>com.baomidou</groupId>
|
||
|
|
<artifactId>mybatis-plus-generator</artifactId>
|
||
|
|
</exclusion>
|
||
|
|
</exclusions>
|
||
|
|
</dependency>
|
||
|
|
<!-- 七牛云-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.qiniu</groupId>
|
||
|
|
<artifactId>qiniu-java-sdk</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- websocket-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>us.codecraft</groupId>
|
||
|
|
<artifactId>webmagic-core</artifactId>
|
||
|
|
<version>0.7.3</version>
|
||
|
|
<exclusions>
|
||
|
|
<exclusion>
|
||
|
|
<groupId>org.slf4j</groupId>
|
||
|
|
<artifactId>slf4j-log4j12</artifactId>
|
||
|
|
</exclusion>
|
||
|
|
</exclusions>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!--用于File转MultipartFile-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-mock</artifactId>
|
||
|
|
<version>2.0.8</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- 通用工具-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.hongshu</groupId>
|
||
|
|
<artifactId>hongshu-common</artifactId>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
</project>
|