12345678910111213141516171819202122232425262728293031323334353637383940 |
- <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>
- <groupId>com.platform</groupId>
- <artifactId>platform</artifactId>
- <version>1.0.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>platform-api</artifactId>
- <packaging>jar</packaging>
- <description>API接口模块</description>
- <dependencies>
- <dependency>
- <groupId>com.platform</groupId>
- <artifactId>platform-common</artifactId>
- <version>1.0.0</version>
- </dependency>
- <!--swagger 依赖-->
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-swagger2</artifactId>
- <version>2.4.0</version>
- </dependency>
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-swagger-ui</artifactId>
- <version>2.4.0</version>
- </dependency>
- <dependency>
- <groupId>com.github.pagehelper</groupId>
- <artifactId>pagehelper</artifactId>
- <version>5.1.4</version>
- </dependency>
- </dependencies>
- </project>
|