pom.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.macro.mall</groupId>
  7. <artifactId>mall-common</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <name>mall-common</name>
  11. <description>mall-common project for mall</description>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.github.pagehelper</groupId>
  15. <artifactId>pagehelper</artifactId>
  16. <version>5.1.8</version>
  17. </dependency>
  18. <!--Swagger-UI API文档生产工具-->
  19. <dependency>
  20. <groupId>io.springfox</groupId>
  21. <artifactId>springfox-swagger2</artifactId>
  22. <version>2.7.0</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>io.springfox</groupId>
  26. <artifactId>springfox-swagger-ui</artifactId>
  27. <version>2.7.0</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.data</groupId>
  31. <artifactId>spring-data-commons</artifactId>
  32. <version>2.1.5.RELEASE</version>
  33. </dependency>
  34. <!--Hutool Java工具包-->
  35. <dependency>
  36. <groupId>cn.hutool</groupId>
  37. <artifactId>hutool-all</artifactId>
  38. <version>4.5.7</version>
  39. </dependency>
  40. </dependencies>
  41. </project>