pom.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <groupId>com.platform</groupId>
  5. <artifactId>platform</artifactId>
  6. <version>1.0.0</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>platform-api</artifactId>
  10. <packaging>jar</packaging>
  11. <description>API接口模块</description>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.platform</groupId>
  15. <artifactId>platform-common</artifactId>
  16. <version>1.0.0</version>
  17. </dependency>
  18. <!--swagger 依赖-->
  19. <dependency>
  20. <groupId>io.springfox</groupId>
  21. <artifactId>springfox-swagger2</artifactId>
  22. <version>2.4.0</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>io.springfox</groupId>
  26. <artifactId>springfox-swagger-ui</artifactId>
  27. <version>2.4.0</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.github.pagehelper</groupId>
  31. <artifactId>pagehelper</artifactId>
  32. <version>5.1.4</version>
  33. </dependency>
  34. </dependencies>
  35. </project>