2018-12-08 14:59:26 +08:00
|
|
|
<?xml version="1.0"?>
|
2018-12-22 22:59:39 +08:00
|
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
2018-12-08 14:59:26 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2019-08-17 21:16:32 +08:00
|
|
|
|
2019-02-27 00:04:45 +08:00
|
|
|
<groupId>com.zyplayer</groupId>
|
2018-12-08 14:59:26 +08:00
|
|
|
<artifactId>zyplayer-doc-core</artifactId>
|
2019-09-10 22:41:59 +08:00
|
|
|
<version>1.0.4</version>
|
2018-12-08 14:59:26 +08:00
|
|
|
<name>zyplayer-doc-core</name>
|
2018-12-22 22:59:39 +08:00
|
|
|
|
2018-12-08 14:59:26 +08:00
|
|
|
<url>http://maven.apache.org</url>
|
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
|
<java.version>1.8</java.version>
|
2019-06-12 22:28:38 +08:00
|
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
2019-02-27 00:04:45 +08:00
|
|
|
<fastjson.version>1.2.53</fastjson.version>
|
2019-06-14 20:46:53 +08:00
|
|
|
<pagehelper.version>4.1.6</pagehelper.version>
|
2019-06-30 15:14:58 +08:00
|
|
|
<springfox.swagger.version>2.9.2</springfox.swagger.version>
|
2018-12-08 14:59:26 +08:00
|
|
|
</properties>
|
2018-12-22 22:59:39 +08:00
|
|
|
|
2018-12-08 14:59:26 +08:00
|
|
|
<dependencies>
|
2019-02-27 00:04:45 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
|
<version>2.5</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
|
<artifactId>springfox-swagger2</artifactId>
|
2019-06-30 15:14:58 +08:00
|
|
|
<version>${springfox.swagger.version}</version>
|
2019-02-27 00:04:45 +08:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
|
<version>${fastjson.version}</version>
|
|
|
|
|
</dependency>
|
2019-06-14 20:46:53 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.pagehelper</groupId>
|
|
|
|
|
<artifactId>pagehelper</artifactId>
|
|
|
|
|
<version>${pagehelper.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
2018-12-08 14:59:26 +08:00
|
|
|
</project>
|