pom.xml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  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. <!-- MyBatis 生成器 -->
  14. <dependency>
  15. <groupId>org.mybatis.generator</groupId>
  16. <artifactId>mybatis-generator-core</artifactId>
  17. <version>1.3.3</version>
  18. </dependency>
  19. <!-- MyBatis-->
  20. <dependency>
  21. <groupId>org.mybatis</groupId>
  22. <artifactId>mybatis</artifactId>
  23. <version>3.4.2</version>
  24. </dependency>
  25. <!--Mysql数据库驱动-->
  26. <dependency>
  27. <groupId>mysql</groupId>
  28. <artifactId>mysql-connector-java</artifactId>
  29. <version>5.1.46</version>
  30. </dependency>
  31. </dependencies>
  32. </project>