|
|
@@ -0,0 +1,54 @@
|
|
|
+<?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.zhaozhaonews</groupId>
|
|
|
+ <artifactId>zhaozhaonews</artifactId>
|
|
|
+ <version>1.0-SNAPSHOT</version>
|
|
|
+ </parent>
|
|
|
+
|
|
|
+ <artifactId>zhaozhaonews-test</artifactId>
|
|
|
+
|
|
|
+ <properties>
|
|
|
+ <maven.compiler.source>8</maven.compiler.source>
|
|
|
+ <maven.compiler.target>8</maven.compiler.target>
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
+ </properties>
|
|
|
+ <dependencies>
|
|
|
+ <!--引入我们自己封装的文件上传的starter-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.zhaozhaonews</groupId>
|
|
|
+ <artifactId>zhaozhaonews-file-starter</artifactId>
|
|
|
+ <version>1.0-SNAPSHOT</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- 引入依赖模块 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.zhaozhaonews</groupId>
|
|
|
+ <artifactId>zhaozhaonews-model</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.zhaozhaonews</groupId>
|
|
|
+ <artifactId>zhaozhaonews-common</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.zhaozhaonews</groupId>
|
|
|
+ <artifactId>zhaozhaonews-feign-api</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.zhaozhaonews</groupId>
|
|
|
+ <artifactId>zhaozhaonews-util</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <!-- Spring boot starter -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+</project>
|