pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. <artifactId>mall-mbg</artifactId>
  7. <version>1.0</version>
  8. <packaging>jar</packaging>
  9. <name>mall-mbg</name>
  10. <description>mall-mbg project for mall</description>
  11. <parent>
  12. <groupId>com.ym</groupId>
  13. <artifactId>mec-mall</artifactId>
  14. <version>1.0</version>
  15. </parent>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.ym</groupId>
  19. <artifactId>mall-common</artifactId>
  20. <version>1.0</version>
  21. </dependency>
  22. <!-- swagger-spring-boot -->
  23. <dependency>
  24. <groupId>com.spring4all</groupId>
  25. <artifactId>swagger-spring-boot-starter</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.github.xiaoymin</groupId>
  29. <artifactId>swagger-bootstrap-ui</artifactId>
  30. <version>1.9.5</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.github.pagehelper</groupId>
  34. <artifactId>pagehelper-spring-boot-starter</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.alibaba</groupId>
  38. <artifactId>druid-spring-boot-starter</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>mysql</groupId>
  42. <artifactId>mysql-connector-java</artifactId>
  43. </dependency>
  44. </dependencies>
  45. </project>