pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. <dependencies>
  13. <dependency>
  14. <groupId>com.macro.mall</groupId>
  15. <artifactId>mall-common</artifactId>
  16. <version>1.0-SNAPSHOT</version>
  17. </dependency>
  18. <!-- MyBatis 生成器 -->
  19. <dependency>
  20. <groupId>org.mybatis.generator</groupId>
  21. <artifactId>mybatis-generator-core</artifactId>
  22. <version>1.3.3</version>
  23. </dependency>
  24. <!-- MyBatis-->
  25. <dependency>
  26. <groupId>org.mybatis</groupId>
  27. <artifactId>mybatis</artifactId>
  28. <version>3.4.6</version>
  29. </dependency>
  30. <!--Mysql数据库驱动-->
  31. <dependency>
  32. <groupId>mysql</groupId>
  33. <artifactId>mysql-connector-java</artifactId>
  34. <version>8.0.15</version>
  35. </dependency>
  36. </dependencies>
  37. </project>