pom.xml 1.4 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-mbg</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <name>mall-mbg</name>
  11. <description>mall-mbg project for mall</description>
  12. <parent>
  13. <groupId>com.macro.mall</groupId>
  14. <artifactId>mall</artifactId>
  15. <version>1.0-SNAPSHOT</version>
  16. </parent>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.macro.mall</groupId>
  20. <artifactId>mall-common</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.github.pagehelper</groupId>
  24. <artifactId>pagehelper-spring-boot-starter</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.alibaba</groupId>
  28. <artifactId>druid-spring-boot-starter</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.mybatis.generator</groupId>
  32. <artifactId>mybatis-generator-core</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>mysql</groupId>
  36. <artifactId>mysql-connector-java</artifactId>
  37. </dependency>
  38. </dependencies>
  39. </project>